-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtox.ini
48 lines (44 loc) · 877 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
39
40
41
42
43
44
45
46
47
48
[tox]
envlist = lint, pytest, mypy
isolated_build = True
[testenv:lint]
deps =
setuptools
pylama
skip_install = true
commands =
pylama --ignore C901,E116,E226,E251,E203,E501,E741,E731 src/nestedtext/*.py
[testenv]
deps =
arrow
docopt
flatten_dict
hypothesis
inform>=1.29
natsort
parametrize_from_file
pydantic
pydantic[email]
pytest
pytest-cov
pyyaml
quantiphy
requests
shlib
toml
voluptuous
xmltodict
[testenv:pytest]
commands = py.test -vv --cov {posargs} --cov-branch --cov-report term-missing
[testenv:mypy]
description = Run mypy
deps =
mypy
{[testenv]deps}
commands =
# mypy --install-types --non-interactive {toxinidir}/nestedtext
# mypy \
# --install-types \
# --non-interactive \
# --disable-error-code import \
# {toxinidir}/tests