-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
tox.ini
69 lines (62 loc) · 1.77 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
# The test environment and commands
[tox]
envlist = check, test
# Primary test environment that will be called unless name matches one of the other
# described environments. This way it can be called with `tox -e test` (or any name other
# than check/deps) - but importantly can be called while specifying python version.
# e.g. `tox -e py310` will run tests in a python3.10 environment.
[testenv]
description = Runs pytest with posargs - `tox -e test -- -v` == `pytest -v`
deps =
# --no-deps
--requirement deps/test.txt
passenv =
SHED_SLOW_TESTS
commands =
pytest {posargs:-n auto}
[testenv:check]
description = Runs all formatting tools then static analysis (quick)
ignore_errors = true
deps =
# --no-deps
--requirement deps/check.txt
commands =
python tests/test_version.py
shed
flake8
mypy --config-file=tox.ini src/
[testenv:deps]
description = Updates test corpora and the pinned dependencies in `deps/*.txt`
basepython = 3.9
deps =
pip-tools
commands =
pip-compile --quiet --upgrade --rebuild --output-file=deps/check.txt deps/check.in setup.py
pip-compile --quiet --upgrade --rebuild --output-file=deps/test.txt deps/test.in setup.py
[pytest]
xfail_strict = True
addopts =
-Werror
--tb=short
--cov=shed
--cov-branch
--cov-report=term-missing:skip-covered
--cov-fail-under=100
[flake8]
ignore = D1,E501,W503,S101,S310,SIM105
exclude = .*/,__pycache__
[mypy]
python_version = 3.9
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