Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
ci template
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jun 21, 2018
1 parent 52a1d89 commit 73732b8
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ git:
depth: 3


install: pip -q install -e .[tests]

script: pytest -v

after_success:
- coverage run tests/test_all.py
- coveralls
install: pip install -e .[tests]

script:
- pytest -v
- flake8
# - mypy . --ignore-missing-imports # need new version of mypy

after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 3.6* ]]; then
coverage run tests/test_all.py;
coveralls;
fi

0 comments on commit 73732b8

Please sign in to comment.