21 lines
178 B
Bash
Executable File
21 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
. .venv/bin/activate
|
|
|
|
flake8 .
|
|
FLAKE_8=$?
|
|
|
|
./test.sh
|
|
TEST=$?
|
|
|
|
if [ $FLAKE_8 -ne 0 ]; then
|
|
exit $FLAKE_8
|
|
fi
|
|
|
|
if [ $TEST -ne 0 ]; then
|
|
exit $TEST
|
|
fi
|
|
|
|
exit 0
|