-
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.
* Improve Tox configuration * Remove unused mysql Travis service * Upgrade dev requirements * Update documentation * Add Pyhton 3.7 support * sudo Travis keyword has been fully deprecated. * No need to reimplement container_factory fixture
- Loading branch information
1 parent
b7490d6
commit e426fe2
Showing
8 changed files
with
33 additions
and
44 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
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
[tox] | ||
envlist = {py27,py34,py35,py36}-test | ||
envlist = {py27,py34,py35,py36,py37} | ||
skipsdist = True | ||
|
||
[testenv] | ||
whitelist_externals = make | ||
|
||
usedevelop = true | ||
extras = | ||
dev | ||
|
||
deps = | ||
# we can't test eventlet>0.20.1 in our py27 CI environment until the fix | ||
# in https://github.com/eventlet/eventlet/issues/401 is released | ||
py27: eventlet==0.20.1 | ||
py27-examples: eventlet==0.20.1 | ||
py27: pylint==1.9.4 | ||
py{34,35,36,37}: pylint==2.3.1 | ||
|
||
commands = | ||
pip install --editable .[dev] | ||
make test |