pyfly-demo/rundemo.sh
Greg Gauthier 2ea94861c2
Some checks failed
python-build / build (push) Failing after 29s
Update rundemo.sh
2024-07-21 19:04:25 +00:00

6 lines
150 B
Bash
Executable File

#!/usr/bin/env sh
pipenv run python3 app/simple.py & PID=$!
pipenv run python3 -m pytest tests/test_hov.py --verbose --show-capture=all
kill -9 $PID