Skip to content

Commit

Permalink
Write Parsl logs and proxies to different directories
Browse files Browse the repository at this point in the history
  • Loading branch information
WardLT committed Jul 31, 2023
1 parent 53242be commit dc40838
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 @@ -39,17 +39,17 @@ def count_nodes(x, _resources: ResourceRequirements):
def config(tmpdir):
return Config(
executors=[
HighThroughputExecutor(max_workers=1, address='localhost')
HighThroughputExecutor(max_workers=1)
],
strategy=None,
run_dir=str(tmpdir),
run_dir=str(tmpdir / 'run'),
)


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

0 comments on commit dc40838

Please sign in to comment.