Skip to content

Commit

Permalink
Fixing confTest with the mising values
Browse files Browse the repository at this point in the history
  • Loading branch information
antolinos committed Jan 26, 2023
1 parent 7cb0747 commit 7eac557
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def icat_client():
checkCert=Config.config.datagateway_api.icat_check_cert,
)
client.login(
Config.config.test_mechanism, Config.config.test_user_credentials.dict(),
Config.config.test_mechanism,
Config.config.test_user_credentials.dict(),
)
return client

Expand Down Expand Up @@ -107,6 +108,10 @@ def test_config_data():
"mechanism": "anon",
"username": "",
"password": "",
"scoring_enabled": False,
"scoring_server": "http://localhost:9000/score",
"scoring_group": "investigation",
"scoring_limit": 1000,
},
"flask_reloader": False,
"log_level": "WARN",
Expand Down

0 comments on commit 7eac557

Please sign in to comment.