forked from googlefonts/fontmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
38 lines (33 loc) · 806 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tox]
envlist = lint, py3{8,9,10,11}, 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, B905
max-line-length = 88
exclude = .git, __pycache__, build, dist, .eggs, .tox, venv, venv*, .venv, .venv*
[isort]
profile = black