Skip to content

Commit ab6d2b2

Browse files
committed
debug
1 parent 4afcf72 commit ab6d2b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.evergreen/scripts/run_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,9 @@ def run() -> None:
112112
return
113113

114114
# Run local tests.
115-
pytest.main(TEST_ARGS)
115+
ret = pytest.main(TEST_ARGS)
116+
if ret != 0:
117+
sys.exit(ret)
116118

117119
# Handle perf test post actions.
118120
if TEST_PERF:

0 commit comments

Comments
 (0)