LogarithmPlotter/scripts/run-tests.sh

8 lines
160 B
Bash
Raw Normal View History

2024-09-18 20:51:23 +00:00
#!/bin/bash
2024-09-18 21:11:44 +00:00
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/"
2024-09-18 20:51:23 +00:00
# Run python tests
2024-09-18 21:11:44 +00:00
PYTHONPATH="$PYTHONPATH:.." pytest --cov --cov-report term-missing ..
2024-09-18 20:51:23 +00:00