-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (30 loc) · 582 Bytes
/
tox.ini
File metadata and controls
36 lines (30 loc) · 582 Bytes
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
[tox]
envlist = py35, py36, py37, py38, py39, py310, py311, pypy3, coverage, docs, flake8, mypy
minversion = 3.3.0
isolated_build = true
[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37, docs
3.8: py38
3.9: py39
3.10: py310, coverage, flake8, mypy
3.11: py311
pypy3: pypy3
[testenv]
extras = test
commands = pytest
[testenv:coverage]
commands =
pytest --cov=gyazo
[testenv:docs]
changedir = docs
extras = docs
commands = make html
[testenv:flake8]
commands = flake8 gyazo/
[testenv:mypy]
extras = mypy
commands =
mypy --strict gyazo