Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
kanesoban committed Dec 17, 2024
1 parent 41001f0 commit 78ba3c9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions swarm_copy_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,24 @@ def get_resolve_query_output():
def brain_region_json_path():
br_path = Path(__file__).parent / "data" / "brainregion_hierarchy.json"
return br_path


@pytest.fixture(name="settings")
def settings():
return Settings(
tools={
"literature": {
"url": "fake_literature_url",
},
},
knowledge_graph={
"base_url": "https://fake_url/api/nexus/v1",
},
openai={
"token": "fake_token",
},
keycloak={
"username": "fake_username",
"password": "fake_password",
},
)

0 comments on commit 78ba3c9

Please sign in to comment.