Add tox configuration and integration with setup.py
Add Travis CI build server configuration Add badges and Tests section to README Bump version (development)
This commit is contained in:
parent
33ec166c6f
commit
dadb8f1ff6
7 changed files with 106 additions and 15 deletions
18
tox.ini
Normal file
18
tox.ini
Normal file
|
@ -0,0 +1,18 @@
|
|||
[tox]
|
||||
envlist =
|
||||
flake8py{2,3}
|
||||
|
||||
[testenv]
|
||||
# deps = pytest
|
||||
commands =
|
||||
# py.test
|
||||
|
||||
[testenv:flake8py2]
|
||||
basepython = python2.7
|
||||
deps = flake8
|
||||
commands = flake8 .
|
||||
|
||||
[testenv:flake8py3]
|
||||
basepython = python3.4
|
||||
deps = flake8
|
||||
commands = flake8 .
|
Loading…
Add table
Add a link
Reference in a new issue