forked from jrief/djangocms-cascade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
29 lines (26 loc) · 764 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
[tox]
downloadcache = {toxworkdir}/_download/
envlist = coverage-clean, py{27,34}-django{17,18}-cms{31,32}, coverage-report
[testenv]
# usedevelop is needed to collect coverage data
usedevelop = True
commands =
coverage run -a {envbindir}/py.test tests
deps =
coverage==4.0.2
cms31: https://github.com/divio/django-cms/archive/support/3.1.x.zip
cms32: https://github.com/divio/django-cms/archive/develop.zip
py27: wsgiref
-rtest_requirements.txt
https://github.com/nephila/djangocms-helper/archive/develop.zip
[testenv:coverage-clean]
deps =
coverage==4.0.2
skipsdist = true
whitelist_externals = /bin/rm
commands = rm -f .coverage
[testenv:coverage-report]
deps =
coverage==4.0.2
skipsdist = true
commands = coverage report