You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
353 B

  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