Skip to content

Commit 086f3e7

Browse files
committed
fix: revert SystemExit re-raise in run_mapper fixture
1 parent 1a249e0 commit 086f3e7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/conftest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,7 @@ def _run(args):
114114
main()
115115
return True
116116
except SystemExit as e:
117-
if e.code == 0:
118-
return True
119-
raise
117+
return e.code == 0
120118

121119
return _run
122120

0 commit comments

Comments
 (0)