Files
sublime-music/cicd/pytest.sh
Sumner Evans a4e6f19a33 /bin/sh -> /usr/bin/env sh
Better compatibility with NixOS
2021-08-23 14:35:19 -06:00

13 lines
143 B
Bash
Executable File

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