Skip to content

Commit 394cad9

Browse files
committed
Add default values for db_creds_root
1 parent 9b0df13 commit 394cad9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ def enable_filepath_feature(monkeypatch):
5555
@pytest.fixture(scope="session")
5656
def db_creds_root() -> Dict:
5757
return dict(
58-
host=os.getenv("DJ_HOST"),
59-
user=os.getenv("DJ_USER"),
60-
password=os.getenv("DJ_PASS"),
58+
host=os.getenv("DJ_HOST", "fakeservices.datajoint.io"),
59+
user=os.getenv("DJ_USER", "root"),
60+
password=os.getenv("DJ_PASS", "password"),
6161
)
6262

6363

0 commit comments

Comments
 (0)