forked from hovel/pybbm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
32 lines (29 loc) · 682 Bytes
/
tox.ini
File metadata and controls
32 lines (29 loc) · 682 Bytes
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
[tox]
envlist = py{27,34,35}-django1{8,9,10}-{sqlite,postgres,mysql},coverage
[testenv:coverage]
basepython = python2.7
deps =
Django>=1.8,<1.9
-Urtest/test_project/requirements_test.txt
coveralls
commands =
coverage erase
coverage run setup.py test
coverage report
coverage html
[testenv]
setenv=
mysql: DB=mysql
postgres: DB=postgres
commands = {envpython} setup.py test
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
deps =
mysql: mysqlclient
postgres: psycopg2
-Urtest/test_project/requirements_test.txt
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11