run_tests.sh 353 B

12345678910111213141516171819
  1. #!/bin/bash
  2. DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter"
  3. test_set=""
  4. case "$YTDL_TEST_SET" in
  5. core)
  6. test_set="-I test_($DOWNLOAD_TESTS)\.py"
  7. ;;
  8. download)
  9. test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
  10. ;;
  11. *)
  12. break
  13. ;;
  14. esac
  15. nosetests test --verbose $test_set