Skip to content

Commit

Permalink
Pass store_directory to celery_config
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Karetnikov authored and nkaretnikov committed Oct 23, 2023
1 parent 10bdcec commit 41cdc09
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conda-store-server/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
@pytest.fixture
def celery_config(conda_store):
config = conda_store.celery_config
config["traitlets"] = {"CondaStore": {"database_url": conda_store.database_url}}
config["traitlets"] = {"CondaStore": {
"database_url": conda_store.database_url,
"store_directory": conda_store.store_directory,
}}
return config


Expand Down

0 comments on commit 41cdc09

Please sign in to comment.