Skip to content

Commit 59d71c7

Browse files
committed
rf: quietly exit instead of loud exception
1 parent 9d75cdf commit 59d71c7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/test_heuristics.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ def test_dbic_bids_largely_smoke(tmpdir, heuristic, invocation):
5757
# those guys -- they just plow through it ATM without failing, i.e.
5858
# the logic is to reprocess
5959
runner(args)
60-
else:
61-
with pytest.raises(RuntimeError):
62-
runner(args)
60+
61+
# don't raise error by rerun...
62+
# else:
63+
# with pytest.raises(RuntimeError):
64+
# runner(args)
6365
# but there should be nothing new
6466
assert not ds.repo.dirty
6567
assert head == ds.repo.get_hexsha()

0 commit comments

Comments
 (0)