mirror of
https://github.com/google/fonts.git
synced 2024-11-24 09:43:46 +03:00
update tox
This commit is contained in:
parent
8101ad7bdd
commit
15b9f5747c
67
tox.ini
67
tox.ini
@ -1,53 +1,38 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py37, py38, py39, coverage, flake8, pylint
|
envlist = lint, py3{7,8,9}, pypy3, coverage-report
|
||||||
|
skip_missing_interpreters = true
|
||||||
[gh-actions]
|
|
||||||
python =
|
|
||||||
3.7: py37, coverage, flake8, pylint
|
|
||||||
3.8: py38, coverage, flake8, pylint
|
|
||||||
3.9: py39, coverage, flake8, pylint
|
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
pytest
|
-r requirements.txt
|
||||||
coverage
|
-r test_requirements.txt
|
||||||
-rrequirements.txt
|
; download the latest pip, setuptools and wheel when creating the venv
|
||||||
commands = coverage run -m pytest {posargs}
|
download = true
|
||||||
|
commands =
|
||||||
|
coverage run --parallel-mode -m pytest {posargs}
|
||||||
|
|
||||||
[testenv:coverage]
|
[testenv:lint]
|
||||||
deps = coverage
|
skip_install = true
|
||||||
|
deps =
|
||||||
|
-r test_requirements.txt
|
||||||
|
commands =
|
||||||
|
black --check --diff .
|
||||||
|
isort --check-only --diff .
|
||||||
|
flake8
|
||||||
|
|
||||||
|
[testenv:coverage-report]
|
||||||
skip_install = true
|
skip_install = true
|
||||||
commands =
|
commands =
|
||||||
|
coverage combine
|
||||||
|
coverage xml
|
||||||
coverage report
|
coverage report
|
||||||
coverage html
|
coverage html
|
||||||
|
|
||||||
[testenv:flake8]
|
|
||||||
deps =
|
|
||||||
flake8
|
|
||||||
commands = flake8 --count --show-source --statistics
|
|
||||||
|
|
||||||
[testenv:pylint]
|
|
||||||
deps =
|
|
||||||
pylint
|
|
||||||
wont_fix = invalid-name,protected-access,too-many-lines
|
|
||||||
maybe_someday = fixme,missing-docstring,line-too-long
|
|
||||||
commands = pylint --disable={[testenv:pylint]wont_fix},{[testenv:pylint]maybe_someday} --ignore=axes_pb2.py Lib/axisregistry
|
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
select = E,F,W
|
select = C, E, F, W, B, B9
|
||||||
|
ignore = E203, E266, E501, W503
|
||||||
|
max-line-length = 88
|
||||||
|
exclude = .git, __pycache__, build, dist, .eggs, .tox, venv, venv*, .venv, .venv*
|
||||||
|
|
||||||
exclude =
|
[isort]
|
||||||
# Exclude the entire build directory:
|
profile = black
|
||||||
build
|
|
||||||
# Exclude these auto-generated files that should not be hand-edited:
|
|
||||||
Lib/axisregistry/*_pb2.py,
|
|
||||||
# No need to traverse hidden directories such as .git, .tox
|
|
||||||
.*,
|
|
||||||
# Exclude virtual environment directory:
|
|
||||||
venv*,
|
|
||||||
# There's no value in checking cache directories
|
|
||||||
__pycache__,
|
|
||||||
|
|
||||||
max-line-length=100
|
|
||||||
ignore =
|
|
||||||
E126, # continuation line over-indented for hanging indent
|
|
Loading…
Reference in New Issue
Block a user