9 lines
235 B
Bash
Executable File
9 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
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
|