From 6f67fb67d4407064adeb5c20d9361906e700889c Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 27 Feb 2021 14:48:07 +0100 Subject: [PATCH] Use the run_tests.sh script instead of plain pytest --- bin/run_ci_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run_ci_tests.sh b/bin/run_ci_tests.sh index 5698158..dd0a08a 100755 --- a/bin/run_ci_tests.sh +++ b/bin/run_ci_tests.sh @@ -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() {