mirror of
https://github.com/google/fonts.git
synced 2024-12-16 20:52:41 +03:00
1f5d64a60b
4e862682
Merge pull request #36 from googlefonts/davelab6-tooltip-fixes948129a4
Merge pull request #39 from googlefonts/tox81aa9727
run black15b9f574
update tox80e36bf3
weight and width textprotos updated to say stroke weight796f577b
y_transparent_descender.textproto Use depth, not heighted29279d
Creating `flair.svg` git-subtree-dir: axisregistry git-subtree-split:4e86268272
38 lines
795 B
INI
38 lines
795 B
INI
[tox]
|
|
envlist = lint, py3{7,8,9}, pypy3, coverage-report
|
|
skip_missing_interpreters = true
|
|
|
|
[testenv]
|
|
deps =
|
|
-r requirements.txt
|
|
-r test_requirements.txt
|
|
; download the latest pip, setuptools and wheel when creating the venv
|
|
download = true
|
|
commands =
|
|
coverage run --parallel-mode -m pytest {posargs}
|
|
|
|
[testenv:lint]
|
|
skip_install = true
|
|
deps =
|
|
-r test_requirements.txt
|
|
commands =
|
|
black --check --diff .
|
|
isort --check-only --diff .
|
|
flake8
|
|
|
|
[testenv:coverage-report]
|
|
skip_install = true
|
|
commands =
|
|
coverage combine
|
|
coverage xml
|
|
coverage report
|
|
coverage html
|
|
|
|
[flake8]
|
|
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*
|
|
|
|
[isort]
|
|
profile = black |