Skip to content

Commit c06364e

Browse files
committed
fix test run logic
1 parent 422852c commit c06364e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def run() -> None:
116116
TEST_ARGS.extend(f"-o log_cli_level={logging.DEBUG} -o log_cli=1".split())
117117

118118
# Run local tests.
119-
ret = pytest.main(TEST_ARGS + sys.argv[:1])
119+
ret = pytest.main(TEST_ARGS + sys.argv[1:])
120120
if ret != 0:
121121
sys.exit(ret)
122122

0 commit comments

Comments
 (0)