Files
sublime-music/cicd/pytest.sh
Sumner Evans ff062b79ed CI/CD Fixes
2019-10-17 15:26:07 +00:00

13 lines
135 B
Bash
Executable File

#! /bin/sh
pytest
ec=$?
echo "pytest exited with exit code $ec"
case $ec in
0) exit 0 ;;
5) exit 0 ;;
*) exit 1 ;;
esac