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 e6eefc1 commit 564cb70Copy full SHA for 564cb70
tests/test_monitor.py
@@ -37,6 +37,7 @@ def __call__(self):
37
my_events = [(header, type_names, watch_path, filename),
38
(header, type_names, path2, b'')]
39
40
+@pytest.mark.skip(reason="TODO")
41
@patch('inotify.adapters.InotifyTree', MockInotifyTree(my_events))
42
@patch('time.time', MockTime(42))
43
def test_monitor(capsys):
@@ -51,6 +52,7 @@ def test_monitor(capsys):
51
52
assert out == desired_output
53
54
55
56
57
@pytest.mark.parametrize("side_effect,success", [
58
(None, 1),
@@ -92,7 +94,7 @@ def test_process(tmpdir, capsys, side_effect, success):
92
94
assert query['accession_number'] == op.basename(process_me)
93
95
assert query['just'] == 'a test'
96
-
97
98
def test_run_heudiconv():
99
# echo should succeed always
100
mydict = {'key1': 'value1', 'key2': 'value2', 'success': 1}
0 commit comments