forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
35 lines (31 loc) · 801 Bytes
/
setup.cfg
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
[metadata]
license_files = LICENSE
[aliases]
test = pytest
[flake8]
extend-ignore = E203
max-line-length = 100
exclude =
venv*
docs
build
per-file-ignores =
*/__init__.py: F401
[tool:isort]
force_grid_wrap = 0
include_trailing_comma = True
known_first_party = vyper
multi_line_output = 3
use_parentheses = True
ensure_newline_before_comments = True
line_length = 100
[tool:pytest]
addopts = -n auto
--dist worksteal
python_files = test_*.py
testpaths = tests
xfail_strict = true
markers =
fuzzing: Run Hypothesis fuzz test suite (deselect with '-m "not fuzzing"')
requires_evm_version(version): Mark tests that require at least a specific EVM version and would throw `EvmVersionException` otherwise
venom_xfail: mark a test case as a regression (expected to fail) under the venom pipeline