-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As a software engineer, I'd like to have support for modern versions of Python declared in setup.py and to have corresponding tests on CI. Also, I'd like to be able to conveniently run tests in my local environment, so I want to add a tox config file. These changes: - Add Python 3.5+ to setup.py and .travis.yml - Add tox.ini - Add a mention of tox into Development section of README - Simplify the tests requirements
- Loading branch information
1 parent
066cc17
commit b53f826
Showing
4 changed files
with
27 additions
and
2 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
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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[tox] | ||
envlist = py27,py35,py36,py37 | ||
|
||
[testenv] | ||
install_command = pip install {opts} {packages} {env:PWD}[tests] | ||
whitelist_externals = make | ||
commands = make test lint |