2015-03-17 17:21:34 +03:00
|
|
|
[tox]
|
2015-03-18 15:50:45 +03:00
|
|
|
envlist=
|
2022-12-19 05:09:14 +03:00
|
|
|
coveralls, pylint, flake8, pydocstyle, 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, pypy2.7, pypy3.9
|
2015-03-17 17:21:34 +03:00
|
|
|
|
2015-03-18 01:38:54 +03:00
|
|
|
[testenv]
|
|
|
|
deps=
|
2021-10-18 23:19:03 +03:00
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
2020-10-25 03:56:32 +03:00
|
|
|
# TODO: Hotfix, remove when fixed https://github.com/aio-libs/aiohttp/issues/5107
|
|
|
|
typing_extensions
|
2020-12-06 05:36:30 +03:00
|
|
|
httpx
|
2020-12-06 05:49:54 +03:00
|
|
|
fastapi
|
2021-03-09 00:32:34 +03:00
|
|
|
numpy
|
|
|
|
scipy
|
2021-03-20 20:16:51 +03:00
|
|
|
boto3
|
|
|
|
mypy_boto3_s3
|
2020-06-25 04:23:29 +03:00
|
|
|
extras=
|
|
|
|
yaml
|
2021-02-03 17:21:32 +03:00
|
|
|
pydantic
|
2020-07-11 19:15:00 +03:00
|
|
|
flask
|
2020-07-29 02:19:05 +03:00
|
|
|
aiohttp
|
2021-10-18 23:19:03 +03:00
|
|
|
commands = pytest -c tests/.configs/pytest.ini
|
|
|
|
python_files = test_*_py3*.py
|
2015-03-18 01:38:54 +03:00
|
|
|
|
2015-03-18 15:50:45 +03:00
|
|
|
[testenv:coveralls]
|
2022-12-19 05:09:14 +03:00
|
|
|
passenv = GITHUB_*, COVERALLS_*
|
|
|
|
basepython=python3.11
|
2016-11-03 01:56:30 +03:00
|
|
|
usedevelop=True
|
2015-03-18 15:50:45 +03:00
|
|
|
deps=
|
|
|
|
{[testenv]deps}
|
2016-11-01 11:49:44 +03:00
|
|
|
cython
|
2015-03-18 15:50:45 +03:00
|
|
|
coverage
|
2015-03-18 01:38:54 +03:00
|
|
|
coveralls
|
2015-03-18 15:50:45 +03:00
|
|
|
commands=
|
2015-03-18 01:38:54 +03:00
|
|
|
coverage erase
|
2021-10-18 23:19:03 +03:00
|
|
|
coverage run --rcfile=./.coveragerc -m pytest -c tests/.configs/pytest.ini
|
2016-11-03 01:56:30 +03:00
|
|
|
coverage report --rcfile=./.coveragerc
|
2015-07-21 09:48:50 +03:00
|
|
|
coveralls
|
2015-03-18 15:50:45 +03:00
|
|
|
|
2021-01-27 05:11:27 +03:00
|
|
|
[testenv:2.7]
|
2020-10-25 03:56:32 +03:00
|
|
|
deps=
|
2021-10-18 23:19:03 +03:00
|
|
|
pytest
|
2020-07-29 02:19:05 +03:00
|
|
|
extras=
|
|
|
|
yaml
|
|
|
|
flask
|
2021-10-18 23:19:03 +03:00
|
|
|
commands = pytest -c tests/.configs/pytest-py27.ini
|
2018-10-18 19:39:19 +03:00
|
|
|
|
2021-01-27 05:11:27 +03:00
|
|
|
[testenv:3.5]
|
2020-12-06 05:49:54 +03:00
|
|
|
deps=
|
2021-10-18 23:19:03 +03:00
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
2021-04-19 04:37:55 +03:00
|
|
|
contextvars
|
2020-06-25 04:23:29 +03:00
|
|
|
extras=
|
2020-08-27 05:24:20 +03:00
|
|
|
yaml
|
2020-07-11 19:15:00 +03:00
|
|
|
flask
|
2021-10-18 23:19:03 +03:00
|
|
|
commands = pytest -c tests/.configs/pytest-py35.ini
|
2020-06-25 04:23:29 +03:00
|
|
|
|
2022-12-19 05:09:14 +03:00
|
|
|
[testenv:pypy2.7]
|
2020-10-25 03:56:32 +03:00
|
|
|
deps=
|
2021-10-18 23:19:03 +03:00
|
|
|
pytest
|
2020-07-29 02:19:05 +03:00
|
|
|
extras=
|
|
|
|
yaml
|
|
|
|
flask
|
2021-10-18 23:19:03 +03:00
|
|
|
commands = pytest -c tests/.configs/pytest-py27.ini
|
2018-10-18 19:39:19 +03:00
|
|
|
|
2022-12-19 05:09:14 +03:00
|
|
|
[testenv:pypy3.9]
|
2021-03-09 00:32:34 +03:00
|
|
|
deps=
|
2021-10-18 23:19:03 +03:00
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
2021-03-09 00:32:34 +03:00
|
|
|
httpx
|
|
|
|
fastapi
|
2021-03-20 20:16:51 +03:00
|
|
|
boto3
|
|
|
|
mypy_boto3_s3
|
2021-03-09 00:32:34 +03:00
|
|
|
extras=
|
|
|
|
yaml
|
|
|
|
flask
|
2021-10-18 23:19:03 +03:00
|
|
|
commands = pytest -c tests/.configs/pytest-py27.ini
|
2021-03-09 00:32:34 +03:00
|
|
|
|
|
|
|
|
2015-03-18 17:09:22 +03:00
|
|
|
[testenv:pylint]
|
2015-03-18 16:53:08 +03:00
|
|
|
deps=
|
|
|
|
pylint
|
|
|
|
commands=
|
2016-11-03 00:55:14 +03:00
|
|
|
- pylint -f colorized --rcfile=./.pylintrc src/dependency_injector
|
2015-03-18 16:53:08 +03:00
|
|
|
|
2015-03-18 17:09:22 +03:00
|
|
|
[testenv:flake8]
|
2015-03-18 16:53:08 +03:00
|
|
|
deps=
|
|
|
|
flake8
|
|
|
|
commands=
|
2016-11-03 00:55:14 +03:00
|
|
|
flake8 --max-complexity=10 src/dependency_injector/
|
2016-02-08 01:29:41 +03:00
|
|
|
flake8 --max-complexity=10 examples/
|
2015-03-18 16:53:08 +03:00
|
|
|
|
2016-02-28 17:01:20 +03:00
|
|
|
[testenv:pydocstyle]
|
2015-03-18 16:53:08 +03:00
|
|
|
deps=
|
2016-02-28 17:01:20 +03:00
|
|
|
pydocstyle
|
2015-03-18 16:53:08 +03:00
|
|
|
commands=
|
2016-11-03 00:55:14 +03:00
|
|
|
pydocstyle src/dependency_injector/
|
2016-02-28 17:01:20 +03:00
|
|
|
pydocstyle examples/
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
[testenv:mypy]
|
|
|
|
deps=
|
|
|
|
mypy
|
|
|
|
commands=
|
|
|
|
mypy tests/typing
|