Skip to content

Commit

Permalink
extend travis matrix with isort5
Browse files Browse the repository at this point in the history
  • Loading branch information
bnavigator committed Jul 13, 2020
1 parent bab5f2f commit e531517
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .travis.yml
@@ -1,15 +1,27 @@
dist: xenial
language: python
matrix:
- python: '2.7'
- python: '3.5'
- python: '3.6'
- python: '3.7'
- python: '3.8'
- python: 'pypy'
- python: 'pypy3'
python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- 'pypy'
- 'pypy3'
env:
- ISORT_VER="4"
- ISORT_VER="5"
jobs:
exclude:
- python: "2.7"
env: ISORT_VER="5"
- python: "3.5"
env: ISORT_VER="5"
- python: "pypy"
env: ISORT_VER="5"
cache: pip
install:
- if [[ $ISORT_VER == "4" ]]; then pip install 'isort[pyproject] < 5'; fi
- pip install .[test]
script:
- flake8 *.py
Expand Down

0 comments on commit e531517

Please sign in to comment.