Use the run_tests.sh script instead of plain pytest

This commit is contained in:
Fabio Manganiello 2021-02-27 14:48:07 +01:00
parent c77d1a15e5
commit 6f67fb67d4
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ install_repo() {
run_tests() {
echo "Running tests"
cd "$REPO_DIR"
pytest 2>&1 | tee "$TEST_LOG"
./run_tests.sh 2>&1 | tee "$TEST_LOG"
}
check_test_results() {