Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 28 additions & 31 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,53 +17,23 @@ jobs:
python: 3.4
script:
- tox -e py34
- stage: test
name: "Python 3.4 no coverage"
python: 3.4
script:
- tox -e py34-nocov
after_success: skip

- stage: test
name: "Python 3.5"
python: 3.5
script:
- tox -e py35
- stage: test
name: "Python 3.5 no coverage"
python: 3.5
script:
- tox -e py35-nocov
after_success: skip

- stage: test
name: "Python 3.6"
python: 3.6
script:
- tox -e py36
- stage: test
name: "Python 3.6 no coverage"
python: 3.6
script:
- tox -e py36-nocov
after_success: skip

- stage: test
name: "Python 3.7"
python: 3.7
dist: xenial
sudo: true
script:
- tox -e py37
- stage: test
name: "Python 3.7 no coverage"
python: 3.7
dist: xenial
sudo: true
script:
- tox -e py37-nocov
after_success: skip

- stage: test
name: "PyPy3"
python: pypy3.5
Expand Down Expand Up @@ -100,7 +70,34 @@ jobs:
- *upgrade_python_toolset
- pip install tox
script:
- tox mypy
- tox -e mypy
after_success: skip

- stage: Test cythonized
name: "Python 3.4"
python: 3.4
script:
- tox -e py34-nocov
after_success: skip
- stage: Test cythonized
name: "Python 3.5"
python: 3.5
script:
- tox -e py35-nocov
after_success: skip
- stage: Test cythonized
name: "Python 3.6"
python: 3.6
script:
- tox -e py36-nocov
after_success: skip
- stage: Test cythonized
name: "Python 3.7 no coverage"
python: 3.7
dist: xenial
sudo: true
script:
- tox -e py37-nocov
after_success: skip

- stage: Code style check
Expand Down