-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tox-travis integration support, added py34 and py35 support.
Also added pip and apt cache support in Travis. With tox-travis, the correct python version is displayed in Travis.
- Loading branch information
Showing
2 changed files
with
15 additions
and
6 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,9 +1,18 @@ | ||
sudo: false | ||
|
||
language: python | ||
python: "3.6" | ||
env: | ||
- TOXENV=py27 | ||
- TOXENV=py36 | ||
|
||
python: | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
|
||
cache: | ||
- apt | ||
- pip | ||
|
||
install: | ||
- pip install tox | ||
- pip install tox tox-travis | ||
|
||
script: tox |
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,5 +1,5 @@ | ||
[tox] | ||
envlist = py27,py36,stylecheck | ||
envlist = py27,py34,py35,py36,stylecheck | ||
|
||
[testenv] | ||
deps = | ||
|