mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
b97862cb9f
* Add GA test and linter jobs * Remove not used async run() functions from tests * Update aiohttp ext test * Add botocore warning ignores * Update changelog * Update publishing job config for testing * Publishing test #1 * Update GA tests-and-linters job to use latest ubuntu for tests * Update publishing GA job
105 lines
1.7 KiB
INI
105 lines
1.7 KiB
INI
[tox]
|
|
envlist=
|
|
coveralls, pylint, flake8, pydocstyle, 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, pypy2, pypy3
|
|
|
|
[testenv]
|
|
deps=
|
|
pytest
|
|
pytest-asyncio
|
|
# 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 = pytest -c tests/.configs/pytest.ini
|
|
python_files = test_*_py3*.py
|
|
|
|
[testenv:coveralls]
|
|
passenv = GITHUB_* COVERALLS_*
|
|
basepython=python3.10
|
|
usedevelop=True
|
|
deps=
|
|
{[testenv]deps}
|
|
cython
|
|
coverage
|
|
coveralls
|
|
commands=
|
|
coverage erase
|
|
coverage run --rcfile=./.coveragerc -m pytest -c tests/.configs/pytest.ini
|
|
coverage report --rcfile=./.coveragerc
|
|
coveralls
|
|
|
|
[testenv:2.7]
|
|
deps=
|
|
pytest
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands = pytest -c tests/.configs/pytest-py27.ini
|
|
|
|
[testenv:3.5]
|
|
deps=
|
|
pytest
|
|
pytest-asyncio
|
|
contextvars
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands = pytest -c tests/.configs/pytest-py35.ini
|
|
|
|
[testenv:pypy2]
|
|
deps=
|
|
pytest
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands = pytest -c tests/.configs/pytest-py27.ini
|
|
|
|
[testenv:pypy3]
|
|
deps=
|
|
pytest
|
|
pytest-asyncio
|
|
httpx
|
|
fastapi
|
|
boto3
|
|
mypy_boto3_s3
|
|
extras=
|
|
yaml
|
|
flask
|
|
commands = pytest -c tests/.configs/pytest-py27.ini
|
|
|
|
|
|
[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
|