-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,9 @@ python: | |
- 3.7 | ||
- pypy3 | ||
cache: pip | ||
before_install: | ||
- export PIP_USE_MIRRORS=true | ||
- pip install -U pip setuptools | ||
- pip install -U pytest mock # https://github.com/travis-ci/travis-ci/issues/4873 | ||
- pip install coveralls | ||
- git config --global user.name 'travis-ci' | ||
- git config --global user.email '[email protected]' | ||
install: | ||
- "pip install -e ." | ||
script: coverage run --source=unihan_db setup.py test | ||
- pip install -e . | ||
- pip install -r requirements/test.txt | ||
script: py.test --cov=unihan_db | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |