mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
f961ff536a
* Add single container prototype * Add multiple containers prototype * Add integration tests * Implement from_*() methods and add tests * Prototype inline injections * Add integration test for inline providers * Refactor integration tests * Add integration test for reordered schema * Remove unused imports from tests * Refactor schema module * Update tests to match latest schemas * Add mypy_boto3_s3 to the test requirements * Add boto3 to the test requirements * Add set_provides for Callable, Factory, and Singleton providers * Fix warnings in tests * Add typing stubs for Callable, Factory, and Singleton .set_provides() attributes * Fix singleton children to have optional provides * Implement provider to provider resolving * Fix pypy3 tests * Implement boto3 session use case and add tests * Implement lazy initialization and improve copying for Callable, Factory, Singleton, and Coroutine providers * Fix Python 2 tests * Add region name for boto3 integration example * Remove f-strings from set_provides() * Fix schema flake8 errors * Implement lazy initialization and improve copying for Delegate provider * Implement lazy initialization and improve copying for Object provider * Speed up wiring tests * Implement lazy initialization and improve copying for FactoryAggregate provider * Implement lazy initialization and improve copying for Selector provider * Implement lazy initialization and improve copying for Dependency provider * Implement lazy initialization and improve copying for Resource provider * Implement lazy initialization and improve copying for Configuration provider * Implement lazy initialization and improve copying for ProvidedInstance provider * Implement lazy initialization and improve copying for AttributeGetter provider * Implement lazy initialization and improve copying for ItemGetter provider * Implement lazy initialization and improve copying for MethodCaller provder * Update changelog * Fix typing in wiring module * Fix wiring module loader uninstallation issue * Fix provided instance providers error handing in asynchronous mode Co-authored-by: Roman Mogylatov <rmk@Romans-MacBook-Pro.local>
107 lines
1.8 KiB
INI
107 lines
1.8 KiB
INI
[tox]
|
|
envlist=
|
|
coveralls, pylint, flake8, pydocstyle, 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3
|
|
|
|
[testenv]
|
|
deps=
|
|
# TODO: Hotfix, remove when fixed https://github.com/aio-libs/aiohttp/issues/5107
|
|
typing_extensions
|
|
httpx
|
|
fastapi
|
|
numpy
|
|
scipy
|
|
boto3
|
|
mypy_boto3_s3
|
|
extras=
|
|
yaml
|
|
pydantic
|
|
flask
|
|
aiohttp
|
|
commands=
|
|
python -m unittest discover -s tests/unit -p test_*_py3*.py
|
|
|
|
[testenv:coveralls]
|
|
passenv = GITHUB_* COVERALLS_*
|
|
basepython=python3.9
|
|
usedevelop=True
|
|
deps=
|
|
{[testenv]deps}
|
|
cython
|
|
coverage
|
|
coveralls
|
|
commands=
|
|
coverage erase
|
|
coverage run --rcfile=./.coveragerc -m unittest discover -s tests/unit/ -p test_*_py3*.py
|
|
coverage report --rcfile=./.coveragerc
|
|
coveralls
|
|
|
|
[testenv:2.7]
|
|
deps=
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
python -m unittest discover -s tests/unit -p test_*_py2_py3.py
|
|
|
|
[testenv:3.4]
|
|
deps=
|
|
extras=
|
|
flask
|
|
commands=
|
|
python -m unittest discover -s tests/unit -p test_*_py3.py
|
|
|
|
[testenv:3.5]
|
|
deps=
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
python -m unittest discover -s tests/unit -p test_*_py3.py
|
|
|
|
[testenv:pypy2]
|
|
deps=
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
python -m unittest discover -s tests/unit -p test_*_py2_py3.py
|
|
|
|
[testenv:pypy3]
|
|
deps=
|
|
httpx
|
|
fastapi
|
|
boto3
|
|
mypy_boto3_s3
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands=
|
|
python -m unittest 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
|