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 21c6f25 commit df5d5a1Copy full SHA for df5d5a1
runtests.py
@@ -1,4 +1,8 @@
1
#!/usr/bin/env python
2
+import sys
3
import pytest
4
-pytest.main()
5
+
6
+# sys.exit() is required otherwise the wrapper exits
7
+# with exit code 0, regardless the pytest.main() execution
8
+sys.exit(pytest.main())
0 commit comments