Skip to content

Commit

Permalink
Enable Travis on all branches, not only on master, add Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
and-semakin committed Nov 24, 2019
1 parent 326bb0f commit 8f822cc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
language: python

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

branches:
only:
- master
- v0.6
- v0.5
- "3.7"
- "3.8"

services: mongodb

# Install test dependencies
before_install:
- python --version
- pip install pytest pytest-cov
- pip install codecov

Expand All @@ -25,7 +25,7 @@ install:

# Run automated tests
script:
- py.test --cov flask_user --cov-report term-missing --cov-config flask_user/tests/.coveragerc flask_user/tests
- pytest --cov flask_user --cov-report term-missing --cov-config flask_user/tests/.coveragerc flask_user/tests

# Submit coverage report to coveralls
after_success:
Expand Down

0 comments on commit 8f822cc

Please sign in to comment.