mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
47c79b2772
* Add prototype * Add example * Remove typing erros in Python 2.7 and 3.4 * Move resources example * Draft resources docs * Update resources docs * Fix repr * Rename dict provider test * Add more tests * Add tests + refactoring * Add more tests * Update tests to run only on 3.5+ * Update setup.py * Add typing tests * Update changelog * Fix generator iteration * Remove contextlib * Hotfix aiohttp issue * Move aiohttp fix to tox.ini * Move aiohttp fix to a different place in tox
90 lines
1.6 KiB
INI
90 lines
1.6 KiB
INI
[tox]
|
|
envlist=
|
|
coveralls, pylint, flake8, pydocstyle, py27, py34, py35, py36, py37, py38, pypy, pypy3
|
|
|
|
[testenv]
|
|
deps=
|
|
unittest2
|
|
# TODO: Hotfix, remove when fixed https://github.com/aio-libs/aiohttp/issues/5107
|
|
typing_extensions
|
|
extras=
|
|
yaml
|
|
flask
|
|
aiohttp
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py3*.py
|
|
|
|
[testenv:coveralls]
|
|
passenv=TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH DEPENDENCY_INJECTOR_DEBUG_MODE
|
|
basepython=python3.8
|
|
usedevelop=True
|
|
deps=
|
|
{[testenv]deps}
|
|
cython
|
|
coverage
|
|
coveralls
|
|
commands=
|
|
coverage erase
|
|
coverage run --rcfile=./.coveragerc -m unittest2 discover -s tests/unit/ -p test_*_py3*.py
|
|
coverage report --rcfile=./.coveragerc
|
|
coveralls
|
|
|
|
[testenv:py27]
|
|
deps=
|
|
unittest2
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py2_py3.py
|
|
|
|
[testenv:py34]
|
|
deps=
|
|
unittest2
|
|
extras=
|
|
flask
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py3.py
|
|
|
|
[testenv:py35]
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py3.py
|
|
|
|
[testenv:pypy]
|
|
deps=
|
|
unittest2
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py2_py3.py
|
|
|
|
[testenv:pylint]
|
|
deps=
|
|
pylint
|
|
commands=
|
|
- pylint -f colorized --rcfile=./.pylintrc src/dependency_injector
|
|
|
|
[testenv:flake8]
|
|
deps=
|
|
flake8
|
|
commands=
|
|
flake8 --max-complexity=10 src/dependency_injector/
|
|
flake8 --max-complexity=10 examples/
|
|
|
|
[testenv:pydocstyle]
|
|
deps=
|
|
pydocstyle
|
|
commands=
|
|
pydocstyle src/dependency_injector/
|
|
pydocstyle examples/
|
|
|
|
[testenv:mypy]
|
|
deps=
|
|
mypy
|
|
commands=
|
|
mypy tests/typing
|