Skip to content

Commit

Permalink
Do not need the module-level scope
Browse files Browse the repository at this point in the history
  • Loading branch information
WardLT committed Jul 31, 2023
1 parent a56e637 commit c554e90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions colmena/task_server/tests/test_parsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def config(tmpdir):


# Make a proxy store for larger objects
@fixture(scope='module')
def store(tmp_path):
connector = FileConnector(store_dir=str(tmp_path))
@fixture()
def store(tmpdir):
connector = FileConnector(store_dir=str(tmpdir))
with Store('store', connector=connector, metrics=True) as store:
register_store(store)
yield store
Expand Down

0 comments on commit c554e90

Please sign in to comment.