-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
tox.ini
77 lines (69 loc) · 1.91 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
# The test environment and commands
[tox]
envlist = check, test
skipsdist = True
[testenv:check]
description = Runs all formatting tools then static analysis (quick)
deps =
--requirement deps/check.txt
commands =
shed
python tests/format_json.py
ruff check --fix .
mypy --config-file=tox.ini src/
[testenv:test]
description = Runs pytest with posargs - `tox -e test -- -v` == `pytest -v`
deps =
--requirement deps/test.txt
commands =
pip install --no-deps --editable .
pytest {posargs:-n auto --durations=5}
[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 =
# pip install -e ../mutmut # if e.g. string mutations patched out for speed
mutmut run \
--no-backup \
--paths-to-mutate=src/hypothesis_jsonschema \
--runner="tox -- -x --no-cov -n auto -k 'not real_large_schema'"
mutmut results
# Settings for other tools
[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,E203,E501,W503,S101,S310
exclude = .*/,__pycache__
[mypy]
python_version = 3.8
platform = linux
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_untyped_decorators = True
follow_imports = silent
ignore_missing_imports = True
implicit_reexport = False
strict_equality = True
warn_no_return = True
warn_return_any = True
warn_unreachable = True
warn_unused_ignores = True
warn_unused_configs = True
warn_redundant_casts = True