-
Notifications
You must be signed in to change notification settings - Fork 955
/
tox.ini
62 lines (51 loc) · 1.19 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
# tox (https://tox.readthedocs.io/) is a tool for running tests
# Run tests in multiple virtualenvs.
[tox]
envlist =
flake8
pylint
bandit
py{27,34,35,36,37,38,39,310,py,py3}
readme
requirements
clean
[testenv]
description = Unit tests
deps =
pytest
py34: typing
commands = pytest {posargs}
[testenv:bandit]
description = PyCQA security linter
deps = bandit
commands = bandit -r --ini tox.ini
[testenv:clean]
description = Clean up bytecode
deps = pyclean
commands = py3clean -v {toxinidir}
[testenv:flake8]
description = Static code analysis and code style
deps = flake8
commands = flake8
[testenv:pylint]
description = Check for errors and code smells
deps = pylint
commands = pylint pysnooper setup
[testenv:readme]
description = Ensure README renders on PyPI
deps = twine
commands =
{envpython} setup.py -q sdist bdist_wheel
twine check dist/*
[testenv:requirements]
description = Update requirements.txt
deps = pip-tools
commands = pip-compile --output-file requirements.txt requirements.in
changedir = {toxinidir}
[bandit]
exclude = .tox,build,dist,tests
targets = .
[flake8]
exclude = .tox,build,dist,pysnooper.egg-info
[pytest]
addopts = --strict-markers