mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
45 lines
848 B
INI
45 lines
848 B
INI
[tox]
|
|
envlist=
|
|
coveralls, pylint, flake8, pydocstyle, py26, py27, py33, py34, py35, pypy, pypy3
|
|
|
|
[testenv]
|
|
deps=
|
|
unittest2
|
|
commands=
|
|
unit2 discover tests []
|
|
|
|
[testenv:coveralls]
|
|
basepython=python2.7
|
|
passenv=TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
|
|
deps=
|
|
{[testenv]deps}
|
|
coverage
|
|
coveralls
|
|
commands=
|
|
coverage erase
|
|
coverage run --rcfile=./.coveragerc -m unittest2 discover tests []
|
|
coveralls
|
|
|
|
[testenv:pylint]
|
|
basepython=python2.7
|
|
deps=
|
|
pylint
|
|
commands=
|
|
- pylint -f colorized --rcfile=./.pylintrc dependency_injector
|
|
|
|
[testenv:flake8]
|
|
basepython=python2.7
|
|
deps=
|
|
flake8
|
|
commands=
|
|
flake8 --max-complexity=10 dependency_injector/
|
|
flake8 --max-complexity=10 examples/
|
|
|
|
[testenv:pydocstyle]
|
|
basepython=python2.7
|
|
deps=
|
|
pydocstyle
|
|
commands=
|
|
pydocstyle dependency_injector/
|
|
pydocstyle examples/
|