mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
e0d81c2d28
* Add aiohttp extension module * Add giphynav-aiohttp app * Add missing docstrings * Remove print() call * Remove not needed import from flask extension tests * Improve coroutine provider tests * Add aiohttp extension tests * Update tox.ini * Add aiohttp extras * Try fix Python 3.4 tests * Try fix 3.6 tests * Stop running coroutine tests for Python 3.4 * Rename tests * Remove type hints * Fix pypy and change python version for coverage job to 3.8 * Fix coveralls job * Try fix Python 3.4, 3.5 tests * Make coverage job to run 3.5+ tests * Add tests * Add readme * Update the readmes * Add API docs * Add API docs page * Update changelog
69 lines
1.3 KiB
INI
69 lines
1.3 KiB
INI
[tox]
|
|
envlist=
|
|
coveralls, pylint, flake8, pydocstyle, py27, py34, py35, py36, py37, py38, pypy, pypy3
|
|
|
|
[testenv]
|
|
deps=
|
|
unittest2
|
|
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_*_py35.py
|
|
coverage report --rcfile=./.coveragerc
|
|
coveralls
|
|
|
|
[testenv:py27]
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py2_py3.py
|
|
|
|
[testenv:py34]
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py3.py
|
|
extras=
|
|
flask
|
|
|
|
[testenv:pypy]
|
|
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/
|