mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 01:26:51 +03:00
2e940adb50
* Add basic setup * Add more tests for factory * Add mypy checks to CI * Add mypy checks to makefile command * Add typing for the factories * Add stub for Callable providers * Add typing module and object provider stubs * Fix typing test issue * Remove typing module * Add Delegate stub * Add stub for Dependency provider * Add stub for ExternalDependency * Add stubs for providers module functions * Add stubs for the DependenciesContainer provider * Add stub for the CallableDelegate provider * Add stubs for Coroutine providers * Add stubs for the configuration options * Add stub for the FactoryDelegate * Add stub for the FactoryAggregate provider * Add singleton stubs * Add stubs for singletons * Add stub for the List provider * Add stub for the Container provider * Add stub for the Selector provider * Add stubs for the dynamic container * Add stub for the declarative container * Add stubs for the extensions * Add types module for explicit provider typing * Set absolute import mode for the providers module and add types module test * Skip typing test for Python 3.5 * Remove coroutine test from py35 * Fix py35 tests * Add \n to the tox.ini
82 lines
1.4 KiB
INI
82 lines
1.4 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_*_py3*.py
|
|
coverage report --rcfile=./.coveragerc
|
|
coveralls
|
|
|
|
[testenv:py27]
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
unit2 discover -s tests/unit -p test_*_py2_py3.py
|
|
|
|
[testenv:py34]
|
|
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]
|
|
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
|