We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2506496 commit 1dd5f54Copy full SHA for 1dd5f54
test.py
@@ -2,11 +2,13 @@
2
import os
3
import glob
4
5
+
6
def test_model():
- os.system('python scripts/main.py -config=configs/debugger.cellbox.json')
7
- files = glob.glob('results/Debugging_*/b11_000/3_best.W*')
+ os.system('python scripts/main.py -config=configs/Example.minimal.json')
8
+ files = glob.glob('results/Debugging_*/seed_000/3_best.W*')
9
assert len(files)==1
10
11
12
if __name__ == '__main__':
13
14
pytest.main(args=['-sv', os.path.abspath(__file__)])
0 commit comments