update .travis.yml and run_tests.sh

- add python3.8 and pypy3 builds
- remove deprecated 'sudo: true' and 'sudo: false'
- enable builds for 'test-...' branches
pull/170/head
Mike Fährmann 6 years ago
parent 45e529ab91
commit 373cb07b28
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -3,23 +3,26 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "pypy3"
env:
- GALLERYDL_TESTS=core
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
- python: "3.8-dev"
dist: xenial
- python: "3.6"
env: GALLERYDL_TESTS=results
sudo: false
git:
depth: 3
quiet: true
branches:
only:
- master
- /^v\d+\.\d+\.\d+(-\S*)?$/
- /^test(-\w+)+$/
script:
- ./scripts/run_tests.sh

@ -1,14 +1,16 @@
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
TESTS_CORE=(config cookies downloader extractor oauth text util)
TESTS_RESULTS=(results)
# select tests
TESTS=()
case "${GALLERYDL_TESTS}" in
case "${1:-${GALLERYDL_TESTS:-core}}" in
core) TESTS=( ${TESTS_CORE[@]} );;
results) TESTS=( ${TESTS_RESULTS[@]} );;
*) TESTS=( );;
esac
@ -19,4 +21,4 @@ TESTS=( ${TESTS[@]/%/.py} )
# run 'nosetests' with selected tests
# (or all tests if ${TESTS} is empty)
nosetests --verbose -w test ${TESTS[@]}
nosetests --verbose -w "${DIR}/../test" ${TESTS[@]}

Loading…
Cancel
Save