You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the exit code should not reflect how many tests failed, but what kind of "error" occurred.
I kind of like how Go's Ginkgo package does exit codes:
0 if every test passed and no other errors occurred.
1 if one or more test failed.
197 if every test passed but not all possible tests were run, for example when using --class or --method. This is useful because you do not want a CI to pass if not all tests were run.
Describe the bug
When running tests with
qx test
and the amount of failing tests is 256, the resulting code will be 0.To Reproduce
Steps to reproduce the behavior:
qx test
echo $?
Expected behavior
Expect a non-zero result code, because not all tests passed.
Log
Desktop:
qx-lock.json
Qooxdoo framework version: 7.0.0-beta.6
The text was updated successfully, but these errors were encountered: