-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtox.ini
70 lines (61 loc) · 1.08 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
[tox]
minversion = 3.4.0
envlist = black,py39,flake8,pylint,mypy,pydocstyle,bandit,build
skip_missing_interpreters = true
[testenv:black]
basepython = python3
deps =
black
commands =
# Use this locally and then use git status to see the difference.
black --line-length=100 gistyc
[testenv]
passenv = GIST_TOKEN
deps =
pytest
-rrequirements.txt
commands =
pytest -vv --color=yes
[testenv:flake8]
deps =
flake8
commands =
flake8 gistyc
[testenv:pylint]
skip_install = true
deps =
pylint
-rrequirements.txt
commands =
pylint --rcfile=pylintrc --output-format=colorized gistyc
[testenv:mypy]
basepython = python3
deps =
mypy
-rrequirements.txt
commands =
mypy --config mypy.ini gistyc
[testenv:pydocstyle]
deps =
pydocstyle
commands =
pydocstyle gistyc
[testenv:bandit]
skip_install = true
deps =
bandit
commands =
bandit gistyc
#[testenv:pyroma]
#skip_install = true
#deps =
# pyroma
#commands =
# pyroma .
[testenv:build]
skip_install = true
deps =
wheel
setuptools
commands =
python setup.py bdist_wheel