mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
a387b69a7c
`-k` filters using a substring match on test name. `-m` checks markers for an exact match. Authored by: sulyi
15 lines
277 B
Bash
Executable File
15 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z $1 ]; then
|
|
test_set='test'
|
|
elif [ $1 = 'core' ]; then
|
|
test_set="-m not download"
|
|
elif [ $1 = 'download' ]; then
|
|
test_set="-m download"
|
|
else
|
|
echo 'Invalid test type "'$1'". Use "core" | "download"'
|
|
exit 1
|
|
fi
|
|
|
|
python3 -m pytest "$test_set"
|