diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index c74c9cc12..92f326860 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,13 +6,22 @@ python: - "3.3" - "3.4" - "3.5" + - "3.6" + - "pypy" + - "pypy3" sudo: false -script: nosetests test --verbose -notifications: - email: -# irc: -# channels: -# - "irc.freenode.org#youtube-dl" -# skip_join: true +env: + - YTDL_TEST_SET=core + - YTDL_TEST_SET=download +matrix: + include: + - env: JYTHON=true; YTDL_TEST_SET=core + - env: JYTHON=true; YTDL_TEST_SET=download + fast_finish: true + allow_failures: + - env: YTDL_TEST_SET=download + - env: JYTHON=true; YTDL_TEST_SET=core + - env: JYTHON=true; YTDL_TEST_SET=download +before_install: + - if [ "$JYTHON" == "true" ]; then ./devscripts/install_jython.sh; export PATH="$HOME/jython/bin:$PATH"; fi +script: ./devscripts/run_tests.sh |