-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test with modern versions of Python in CI
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
dist: xenial | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa | ||
# maintainers to fix their pypy-dev package. | ||
- "3.5" | ||
- "3.6" | ||
- "3.7" | ||
- "pypy" | ||
# command to install dependencies | ||
- "pypy3" | ||
install: | ||
- pip install mock | ||
# command to run tests | ||
script: python setup.py test | ||
script: | ||
- python setup.py test |