This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
fbchat/scripts/travis-online
2018-06-21 21:13:17 +02:00

13 lines
295 B
Bash
Executable File

#!/bin/bash
set -ex
echo travis_fold:start:pytest
if ! python -m pytest --tb=no --color=yes; then # --tb=no -> Don't print stack traces
echo 'Some tests failed. Rerunning them, since they can be kinda flaky.'
python -m pytest --last-failed --color=yes
fi
echo travis_fold:end:pytest