forked from zookeepr/zookeepr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
30 lines (24 loc) · 773 Bytes
/
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
[tox]
envlist = pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=C
usedevelop = True
install_command = pip install --allow-external PIL --allow-unverified PIL --allow-external elementtree --allow-unverified elementtree {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8 {posargs}
[testenv:cover]
commands = python setup.py testr --coverage {posargs}
[testenv:venv]
commands = {posargs}
[testenv:pserve]
commands = pserve --reload development.ini {posargs}
[flake8]
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg,zkpylons,zk,alembic,data