2016-03-20 18:43:48 +00:00
|
|
|
[tox]
|
2024-02-18 16:26:54 +00:00
|
|
|
envlist = py38, py39, py310, py311, py312, flake8
|
2022-04-07 23:14:02 +00:00
|
|
|
isolated_build = True
|
2016-03-20 18:43:48 +00:00
|
|
|
|
2021-04-30 19:47:21 +00:00
|
|
|
[gh-actions]
|
|
|
|
python =
|
|
|
|
3.8: py38
|
2021-10-10 16:56:11 +00:00
|
|
|
3.9: py39
|
2023-04-10 20:09:36 +00:00
|
|
|
3.10: py310
|
2023-10-26 23:38:58 +00:00
|
|
|
3.11: py311
|
|
|
|
3.12: py312, flake8
|
2021-04-30 19:47:21 +00:00
|
|
|
|
2016-03-20 18:43:48 +00:00
|
|
|
[testenv]
|
2016-10-13 12:25:57 +00:00
|
|
|
commands =
|
2022-12-11 20:30:33 +00:00
|
|
|
{envbindir}/pytest --tb=short \
|
2021-05-01 09:08:51 +00:00
|
|
|
--junitxml={toxworkdir}/reports/{envname}/junit.xml \
|
|
|
|
--alluredir={toxworkdir}/reports/{envname}/allure-data \
|
2019-01-04 00:04:28 +00:00
|
|
|
--cov={envsitepackagesdir}/dosagelib \
|
|
|
|
--cov-branch \
|
|
|
|
--cov-config=tox.ini \
|
2017-12-19 21:51:50 +00:00
|
|
|
--cov-report=term \
|
2021-05-01 09:08:51 +00:00
|
|
|
--cov-report=xml:{toxworkdir}/reports/{envname}/coverage.xml \
|
|
|
|
--cov-report=html:{toxworkdir}/reports/{envname}/htmlcov \
|
2017-12-19 21:51:50 +00:00
|
|
|
{posargs}
|
2016-10-13 13:05:44 +00:00
|
|
|
|
2017-12-19 21:51:50 +00:00
|
|
|
# Also install extra dependencies for tests.
|
|
|
|
extras =
|
|
|
|
css
|
2020-09-27 16:49:46 +00:00
|
|
|
dev
|
2016-10-13 13:05:44 +00:00
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
commands =
|
2019-07-14 11:12:03 +00:00
|
|
|
- {envbindir}/flake8 --format=pylint \
|
|
|
|
--tee --output-file={toxworkdir}/flake8.log
|
2022-12-11 19:15:09 +00:00
|
|
|
extras =
|
|
|
|
lint
|
2018-05-22 22:54:40 +00:00
|
|
|
|
2019-12-31 17:12:25 +00:00
|
|
|
# Duplicated for CodeClimate...
|
|
|
|
[pep8]
|
2020-01-12 23:36:46 +00:00
|
|
|
max-line-length = 100
|
2022-06-06 10:08:32 +00:00
|
|
|
ignore = E127,E128,E241,FI12,FI14,FI15,FI18,FI50,FI51,FI53,FI54,FI55,FI58,W504
|
2019-12-31 17:12:25 +00:00
|
|
|
|
2018-05-22 22:54:40 +00:00
|
|
|
[pytest]
|
|
|
|
filterwarnings = default
|
2019-12-29 01:29:22 +00:00
|
|
|
junit_family = xunit2
|
2020-10-11 18:15:27 +00:00
|
|
|
|
|
|
|
[isort]
|
|
|
|
|