forked from python-jsonschema/hypothesis-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
88 lines (78 loc) · 1.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# The test environment and commands
[tox]
envlist = check, test
skipsdist = True
[testenv:check]
description = Runs all formatting tools then static analysis (quick)
deps =
--no-deps
--requirement deps/check.txt
whitelist_externals = bash
commands =
shed
flake8
mypy --config-file=tox.ini . src/
[testenv:test]
description = Runs pytest with posargs - `tox -e test -- -v` == `pytest -v`
deps =
--no-deps
--requirement deps/test.txt
commands =
pip install --no-deps --editable .
pytest {posargs:-n auto}
[testenv:deps]
description = Updates test corpora and the pinned dependencies in `deps/*.txt`
deps =
pip-tools
commands =
pip-compile --quiet --upgrade --rebuild --output-file=deps/check.txt deps/check.in
pip-compile --quiet --upgrade --rebuild --output-file=deps/test.txt deps/test.in setup.py
python tests/fetch.py
[testenv:mutmut]
description = Run the mutation testing tool `mutmut` (allow several hours)
deps =
mutmut
tox
commands =
mutmut run
mutmut results
# Settings for other tools
[mutmut]
paths_to_mutate=src/hypothesis_jsonschema
backup=False
runner=tox -e test -- -x -n auto
[pytest]
xfail_strict = True
addopts =
-Werror
--tb=short
--cov=hypothesis_jsonschema
--cov-branch
--cov-report=term-missing:skip-covered
--cov-fail-under=100
[flake8]
ignore = D1,E501,W503,S101,S310
exclude = .*/,__pycache__
[isort]
known_first_party = hypothesis_jsonschema, gen_schemas
default_section = THIRDPARTY
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True
line_length = 88
[mypy]
python_version = 3.6
platform = linux
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_untyped_decorators = True
follow_imports = silent
ignore_missing_imports = True
implicit_reexport = False
warn_no_return = True
warn_return_any = True
warn_unreachable = True
warn_unused_ignores = True
warn_unused_configs = True
warn_redundant_casts = True