-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
64 lines (57 loc) · 1.18 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
61
62
63
64
[tox]
envlist =
py{36,37,38}-core
lint
mypy
docs
[flake8]
max-line-length = 100
exclude =
venv*
.tox
docs
build
[isort]
force_grid_wrap = 0
include_trailing_comma = True
known_third_party = hypothesis,lark,pytest,web3,eth_*,rlp
known_first_party = vyper
multi_line_output = 3
use_parentheses = True
[testenv]
usedevelop = True
commands =
core: pytest -m "not fuzzing" --showlocals {posargs:tests/}
basepython =
py36: python3.6
py37: python3.7
py38: python3.8
extras =
test
whitelist_externals = make
[testenv:docs]
basepython=python3.6
deps =
sphinx
sphinx_rtd_theme
recommonmark
commands =
sphinx-build {posargs:-E} -b html docs dist/docs -n -q --color
[testenv:fuzzing]
basepython = python3.8
commands =
pytest -m fuzzing {posargs:tests/}
extras =
test
whitelist_externals = make
[testenv:lint]
basepython = python
extras = lint
commands =
flake8 {toxinidir}/vyper {toxinidir}/tests
isort --recursive --check-only --diff {toxinidir}/vyper {toxinidir}/tests
[testenv:mypy]
basepython = python
extras = lint
commands =
mypy --follow-imports=silent --ignore-missing-imports --disallow-incomplete-defs -p vyper