Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into fix_deprecated_import
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasg committed Aug 6, 2020
2 parents 4cb7b77 + b5cd3aa commit 3f3cc2f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@ 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"
- flake8 quaternions

# report coverage to coveralls.io
after_success:
Expand Down

0 comments on commit 3f3cc2f

Please sign in to comment.