Skip to content

Commit

Permalink
Add default values for db_creds_root
Browse files Browse the repository at this point in the history
  • Loading branch information
ethho committed Dec 13, 2023
1 parent 9b0df13 commit 394cad9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def enable_filepath_feature(monkeypatch):
@pytest.fixture(scope="session")
def db_creds_root() -> Dict:
return dict(
host=os.getenv("DJ_HOST"),
user=os.getenv("DJ_USER"),
password=os.getenv("DJ_PASS"),
host=os.getenv("DJ_HOST", "fakeservices.datajoint.io"),
user=os.getenv("DJ_USER", "root"),
password=os.getenv("DJ_PASS", "password"),
)


Expand Down

0 comments on commit 394cad9

Please sign in to comment.