-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtox.ini
31 lines (24 loc) · 852 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
[tox]
isolated_build = True
[testenv:tests]
allowlist_externals = poetry
; commands = poetry run invoke tests.install tests.doctest tests.unit {posargs}
commands = poetry run invoke tests.install tests.unit {posargs}
[testenv:tests.doctest]
allowlist_externals = poetry
commands = poetry run invoke tests.install tests.doctest
[testenv:tests.unit]
allowlist_externals = poetry
commands = poetry run invoke tests.install tests.unit {posargs}
[testenv:docs]
allowlist_externals = poetry
commands = poetry run invoke docs.install docs.build {posargs}
[testenv:lint]
allowlist_externals = poetry
commands = poetry run invoke lint.install lint.check
[testenv:format]
allowlist_externals = poetry
commands = poetry run invoke lint.install lint.format
[testenv:types]
allowlist_externals = poetry
commands = poetry run invoke types.install types.check