Skip to content

Commit

Permalink
Merge 48e25d3 into f650bdf
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasg committed Jul 28, 2020
2 parents f650bdf + 48e25d3 commit 34c9a22
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@ python:
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "nightly" # currently points to 3.7-dev
- "3.7"
- "3.8"
- "nightly"

matrix:
allow_failures:
- python: "nightly"

install:
- "pip install --editable .[dev]"
- "pip install python-coveralls"
- pip install --editable .[dev]
- if [[ $TRAVIS_PYTHON_VERSION < 3.5 ]] ; then pip install 'pytest==3.8.2' ; elif [[ $TRAVIS_PYTHON_VERSION < 3.6 ]] ; then pip install 'pytest>=5.4.3' ; fi
- pip install coveralls
script:
- "pytest -v --cov-report= --cov=quaternions tests/"
- pytest -v --cov-report= --cov=quaternions tests/
after_script:
- "flake8 quaternions"

Expand Down

0 comments on commit 34c9a22

Please sign in to comment.