Skip to content

Commit 3952a13

Browse files
committed
test(tox): init tox.ini
Issue pycontw#7
1 parent bb93c88 commit 3952a13

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tox.ini

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[tox]
2+
envlist = py37
3+
skipsdist = true
4+
5+
[testenv]
6+
deps = pipenv
7+
commands =
8+
pipenv install --dev
9+
pytest {posargs}
10+
11+
[flake8]
12+
ignore = E221,E241,W504
13+
exclude =
14+
.cache,
15+
.git,
16+
.tox,
17+
__pycache__,
18+
node_modules,
19+
max-complexity = 10

0 commit comments

Comments
 (0)