]> jfr.im git - yt-dlp.git/blob - devscripts/run_tests.sh
[test] Use `pytest` instead of `nosetests` (#482)
[yt-dlp.git] / devscripts / run_tests.sh
1 #!/bin/sh
2
3 if [ -z $1 ]; then
4 test_set='test'
5 elif [ $1 = 'core' ]; then
6 test_set='not download'
7 elif [ $1 = 'download' ]; then
8 test_set='download'
9 else
10 echo 'Invalid test type "'$1'". Use "core" | "download"'
11 exit 1
12 fi
13
14 echo python3 -m pytest -k $test_set
15 python3 -m pytest -k "$test_set"