Skip to content

Commit

Permalink
Merge 1b9764f into d2c60aa
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Jan 7, 2020
2 parents d2c60aa + 1b9764f commit 7951dc9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .travis.yml
Expand Up @@ -3,16 +3,19 @@ sudo: false
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "nightly"
- "pypy3"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install coveralls flake8 nose flask flask_restful flask_restplus injector flask_sqlalchemy eventlet typing mypy typed_ast
- if [[ "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
- pip install coveralls flake8 nose flask flask_restful flask_restplus injector flask_sqlalchemy eventlet typing
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy typed_ast ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- if [[ "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then make ci ; else make test ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then make ci ; else make test ; fi
after_success:
- coveralls

0 comments on commit 7951dc9

Please sign in to comment.