Skip to content

Commit

Permalink
Adding prefix to environment secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
csacca committed Aug 22, 2021
1 parent c9e9cac commit 82b1e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

@pytest.fixture(scope="module")
def username():
return os.getenv("USERNAME")
return os.getenv("UHOO_USERNAME")


@pytest.fixture(scope="module")
def password():
return os.getenv("PASSWORD")
return os.getenv("UHOO_PASSWORD")

0 comments on commit 82b1e76

Please sign in to comment.