aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--devscripts/run_tests.bat6
-rwxr-xr-xdevscripts/run_tests.sh6
2 files changed, 6 insertions, 6 deletions
diff --git a/devscripts/run_tests.bat b/devscripts/run_tests.bat
index f12ae1c1b..b8bb393d9 100644
--- a/devscripts/run_tests.bat
+++ b/devscripts/run_tests.bat
@@ -3,11 +3,11 @@
cd /d %~dp0..
if ["%~1"]==[""] (
- set "test_set="
+ set "test_set="test""
) else if ["%~1"]==["core"] (
- set "test_set=-k "not download""
+ set "test_set="-m not download""
) else if ["%~1"]==["download"] (
- set "test_set=-k download"
+ set "test_set="-m "download""
) else (
echo.Invalid test type "%~1". Use "core" ^| "download"
exit /b 1
diff --git a/devscripts/run_tests.sh b/devscripts/run_tests.sh
index fb405b569..c9a75ba00 100755
--- a/devscripts/run_tests.sh
+++ b/devscripts/run_tests.sh
@@ -3,12 +3,12 @@
if [ -z $1 ]; then
test_set='test'
elif [ $1 = 'core' ]; then
- test_set='not download'
+ test_set="-m not download"
elif [ $1 = 'download' ]; then
- test_set='download'
+ test_set="-m download"
else
echo 'Invalid test type "'$1'". Use "core" | "download"'
exit 1
fi
-python3 -m pytest -k "$test_set"
+python3 -m pytest "$test_set"