Skip to content
Snippets Groups Projects
Commit 54a9b96f authored by Manuel Günther's avatar Manuel Günther
Browse files

Tested correct location of Experiment.info files

parent 506f1e8c
No related branches found
No related tags found
1 merge request!105Experiment info location
Pipeline #
...@@ -581,6 +581,12 @@ def test_grid_search(): ...@@ -581,6 +581,12 @@ def test_grid_search():
assert bob.bio.base.script.grid_search.task_count == 6 assert bob.bio.base.script.grid_search.task_count == 6
# but no job in the grid # but no job in the grid
assert bob.bio.base.script.grid_search.job_count == 0 assert bob.bio.base.script.grid_search.job_count == 0
# assert that the Experiment.info files are at the right location
for p in (1,2):
for f in (1,2):
for s in (1,2):
if 2*p>f:
assert os.path.exists(os.path.join(test_dir, "test_grid_search/Default/P%d/F%d/S%d/Experiment.info"%(p,f,s)))
# now, in the grid... # now, in the grid...
parameters = [ parameters = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment