mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-02 21:33:12 -04:00
Merge pull request #1128 from mig5/fail_early_on_tests.sh
Fail early if any of the tests fail, rather than continue and possibly exit 0
This commit is contained in:
commit
23746247f8
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ do
|
|||
shift
|
||||
done
|
||||
|
||||
pytest $PARAMS -vvv ./tests/test_cli*.py
|
||||
pytest $PARAMS -vvv ./tests/test_cli*.py || exit 1
|
||||
for filename in ./tests/test_gui_*.py; do
|
||||
pytest $PARAMS -vvv --no-qt-log $filename
|
||||
pytest $PARAMS -vvv --no-qt-log $filename || exit 1
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue