Skip to content

Commit

Permalink
# This is a combination of 24 commits.
Browse files Browse the repository at this point in the history
# This is the 1st commit message:

pin coveralls version

# This is the commit message #2:

rever change of pytest-coverage. Pin python-coverage

# This is the commit message #3:

just as a test, remove coveralls

# This is the commit message #4:

remove also cov from script 🤦

# This is the commit message #5:

pin pytest version

# This is the commit message #6:

pin hypothesis version

# This is the commit message #7:

pin hypothesis to 3.55.1 now

# This is the commit message #8:

do not install pytest-coverage

# This is the commit message #9:

pin pytest-coverage

# This is the commit message #10:

install pinned coverage, do not install pytest-coverage :'(

# This is the commit message #11:

pin attr

# This is the commit message #12:

attr is attrs

# This is the commit message #13:

travis, please tell me attr version

# This is the commit message #14:

go back to original setup.py

# This is the commit message #15:

exclude coveralls from 3.4 & 3.5. Try 1

# This is the commit message #16:

use [] instead of test

# This is the commit message #17:

install pytest 5.4.3

# This is the commit message #18:

travis tell me something

# This is the commit message #19:

please do tell

# This is the commit message #20:

ooohhh?

# This is the commit message #21:

oh 2

# This is the commit message #22:

oh 3

# This is the commit message #23:

oh 4

# This is the commit message #24:

oh 5
  • Loading branch information
matiasg committed Jul 27, 2020
1 parent f650bdf commit e4fada6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@ python:
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "nightly" # currently points to 3.7-dev
#- "3.6-dev"
#- "nightly" # currently points to 3.7-dev

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' ; else pip install python-coveralls ; fi
script:
- "pytest -v --cov-report= --cov=quaternions tests/"
- echo $COVERALLS
- echo $TRAVIS_PYTHON_VERSION
- if [[ $TRAVIS_PYTHON_VERSION < 3.6 ]] ; then pytest -v tests/ ; else pytest -v --cov-report= --cov=quaternions tests/ ; fi
after_script:
- "flake8 quaternions"

# report coverage to coveralls.io
after_success:
- coveralls
- if [[ $TRAVIS_PYTHON_VERSION >= 3.6 ]] ; then coveralls ; fi

cache:
apt: true
Expand Down

0 comments on commit e4fada6

Please sign in to comment.