diff options
author | Alex Merkel <mail@alexmerkel.com> | 2020-12-29 16:03:07 +0100 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-09 16:00:49 +0530 |
commit | ab8e5e516f38c3eab8947614e2347a2473e5dbbc (patch) | |
tree | 48040b0af24439d51ea923efcaf9f48f4bfca477 /devscripts | |
parent | 62d80ba17c5d4f06c324991b076597ec8c5a8c33 (diff) | |
download | hypervideo-pre-ab8e5e516f38c3eab8947614e2347a2473e5dbbc.tar.lz hypervideo-pre-ab8e5e516f38c3eab8947614e2347a2473e5dbbc.tar.xz hypervideo-pre-ab8e5e516f38c3eab8947614e2347a2473e5dbbc.zip |
Add post_hooks option to YoutubeDL.py (https://github.com/ytdl-org/youtube-dl/pull/27573)
Authored by: alexmerkel
Diffstat (limited to 'devscripts')
-rw-r--r-- | devscripts/run_tests.bat | 2 | ||||
-rwxr-xr-x | devscripts/run_tests.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devscripts/run_tests.bat b/devscripts/run_tests.bat index 79359b5a7..531af4066 100644 --- a/devscripts/run_tests.bat +++ b/devscripts/run_tests.bat @@ -1,7 +1,7 @@ @echo off rem Keep this list in sync with the `offlinetest` target in Makefile -set DOWNLOAD_TESTS="age_restriction^|download^|iqiyi_sdk_interpreter^|socks^|subtitles^|write_annotations^|youtube_lists^|youtube_signature" +set DOWNLOAD_TESTS="age_restriction^|download^|iqiyi_sdk_interpreter^|socks^|subtitles^|write_annotations^|youtube_lists^|youtube_signature^|post_hooks" if "%YTDL_TEST_SET%" == "core" ( set test_set="-I test_("%DOWNLOAD_TESTS%")\.py" diff --git a/devscripts/run_tests.sh b/devscripts/run_tests.sh index dd37a80f5..2fa7d16e2 100755 --- a/devscripts/run_tests.sh +++ b/devscripts/run_tests.sh @@ -1,7 +1,7 @@ #!/bin/bash # Keep this list in sync with the `offlinetest` target in Makefile -DOWNLOAD_TESTS="age_restriction|download|iqiyi_sdk_interpreter|socks|subtitles|write_annotations|youtube_lists|youtube_signature" +DOWNLOAD_TESTS="age_restriction|download|iqiyi_sdk_interpreter|socks|subtitles|write_annotations|youtube_lists|youtube_signature|post_hooks" test_set="" multiprocess_args="" |