]> jfr.im git - yt-dlp.git/blame - devscripts/run_tests.sh
[cleanup] Misc
[yt-dlp.git] / devscripts / run_tests.sh
CommitLineData
8a82af35 1#!/usr/bin/env sh
060ac762 2
d2c8aadf 3if [ -z "$1" ]; then
060ac762 4 test_set='test'
d2c8aadf 5elif [ "$1" = 'core' ]; then
a387b69a 6 test_set="-m not download"
d2c8aadf 7elif [ "$1" = 'download' ]; then
a387b69a 8 test_set="-m download"
060ac762 9else
d2c8aadf 10 echo 'Invalid test type "'"$1"'". Use "core" | "download"'
060ac762 11 exit 1
12fi
13
b6dc37fe 14python3 -bb -Werror -m pytest "$test_set"