-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
60 lines (56 loc) · 1.31 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tox]
envlist = lint, pytest, mypy
isolated_build = True
[testenv:lint]
deps =
setuptools
pylama
skip_install = true
commands = pylama --ignore C901,E116,E251,E203,E501,E741,E731 inform/*.py
# Test environment
[testenv]
deps =
hypothesis
pytest
pytest-cov
num2words
[testenv:pytest]
commands = py.test -vv --cov {posargs}
[testenv:mypy]
description = Run mypy
deps =
mypy
quantiphy
{[testenv]deps}
commands =
mypy --install-types --non-interactive {toxinidir}/inform
mypy \
--install-types \
--non-interactive \
--disable-error-code import \
{toxinidir}/examples/addsshkeys
mypy \
--install-types \
--non-interactive \
--disable-error-code import \
{toxinidir}/examples/fdb
mypy \
--install-types \
--non-interactive \
--disable-error-code import \
{toxinidir}/examples/networth
mypy \
--install-types \
--non-interactive \
--disable-error-code import \
{toxinidir}/examples/pass-or-fail
mypy \
--install-types \
--non-interactive \
--disable-error-code import \
{toxinidir}/examples/run
mypy \
--install-types \
--non-interactive \
--disable-error-code import \
{toxinidir}/tests