7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/bash
|
|
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/.."
|
|
|
|
# Run python tests
|
|
PYTHONPATH="$PYTHONPATH:." pytest --cov=LogarithmPlotter --cov-report term-missing .
|
|
|
|
|