-
Notifications
You must be signed in to change notification settings - Fork 35
/
tox.ini
99 lines (78 loc) · 2.13 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
89
90
91
92
93
94
95
96
97
98
99
[tox]
envlist = pre-commit,lint,lint-tracking-airflow,lint-run-airflow,coverage-report,docs,readme,pydocstyle,steadymark
[testenv]
# Python 3.6+ has a number of compile-time warnings on invalid string escapes.
# PYTHONWARNINGS=d and --no-compile below make them visible during the Tox run.
install_command = pip install --no-compile {opts} {packages}
# Prevent random setuptools/pip breakages like
# https://github.com/pypa/setuptools/issues/1042 from breaking our builds.
setenv =
VIRTUALENV_NO_DOWNLOAD=1
[testenv:coverage-report]
basepython = python3.9
deps = coverage
skip_install = true
commands =
coverage combine
coverage report
[testenv:lint]
basepython = python3.9
skip_install = true
deps =
-r {toxinidir}/requirements/requirements-dev.txt
commands =
pylint ./modules ./plugins ./setup.py
[testenv:lint-tracking-airflow]
basepython = python3.9
skip_install = true
deps =
-r {toxinidir}/requirements/requirements-dev-tracking-airflow-3.9-airflow-2.2.5.txt
commands =
pylint ./modules ./plugins ./setup.py
[testenv:flake8]
basepython = python3
skip_install = true
extras = tests
deps =
flake8==4.0.1
commands =
flake8 --show-source --statistics modules/ plugins/ orchestration/ setup.py
[testenv:bumpversion-check]
skip_install = true
deps =
bumpversion
commands = bumpversion --dry-run patch --allow-dirty
[testenv:pre-commit]
basepython = python3.9
skip_install = true
deps = pre-commit
setenv =
SKIP=autoflake8
passenv = HOMEPATH # needed on Windows
commands = pre-commit run --all-files --verbose
[testenv:docs]
basepython = python3.9
setenv =
PYTHONHASHSEED = 0
extras = docs
commands =
python -m doctest README.md
[testenv:manifest]
basepython = python3.9
deps = check-manifest
skip_install = true
commands = check-manifest --ignore README.md
[testenv:readme]
basepython = python3.9
deps = readme_renderer
skip_install = true
commands = python setup.py check --strict --restructuredtext
[testenv:changelog]
basepython = python3.9
deps = towncrier
skip_install = true
commands = towncrier --draft
[testenv:typing]
basepython = python3.9
deps = mypy
commands = mypy tests/typing_example.py