Skip to content

Commit

Permalink
Make the tests conda-store dirs similar to the standalone defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Oct 12, 2023
1 parent 066f646 commit 004e533
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda-store-server/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def celery_config(conda_store):
def conda_store_config(tmp_path, request):
from traitlets.config import Config

filename = pathlib.Path(tmp_path) / "database.sqlite"
filename = pathlib.Path(tmp_path) / ".conda-store" / "database.sqlite"

store_directory = tmp_path / ".conda-store" / "conda-store-state"
store_directory = tmp_path / ".conda-store" / "state"
store_directory.mkdir(parents=True)

with utils.chdir(tmp_path):
Expand Down

0 comments on commit 004e533

Please sign in to comment.