forked from nilp0inter/experta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
23 lines (21 loc) · 631 Bytes
/
tox.ini
File metadata and controls
23 lines (21 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[tox]
envlist = py35, py36, py37, pypy3
[testenv]
deps = pipenv
setenv = PIPENV_VERBOSITY = -1
commands =
pipenv install --dev --ignore-pipfile --skip-lock
pycodestyle --show-source --show-pep8 experta
coverage erase
coverage run -p --branch {envbindir}/py.test -m 'not wip' -v tests/unit
coverage combine
coverage report
coverage html
[testenv:wip]
deps = pipenv
usedevelop = True
setenv = PIPENV_VERBOSITY = -1
commands =
pipenv install --dev --ignore-pipfile --skip-lock
pycodestyle --show-source --show-pep8 experta
coverage run -p --branch {envbindir}/py.test -m 'wip' -v tests/unit