forked from wagtail/wagtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
44 lines (35 loc) · 1016 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tox]
skipsdist = True
usedevelop = True
envlist = py{27,33,34,35}-dj{18,19}-{sqlite,postgres,mysql}-{elasticsearch,noelasticsearch}, flake8
[flake8]
ignore = E501,E303
exclude = wagtail/project_template/*
max-line-length = 120
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands =
elasticsearch: coverage run runtests.py wagtail.wagtailsearch --elasticsearch
noelasticsearch: coverage run runtests.py
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
deps =
django-sendfile==0.3.6
Embedly
dj18: Django>=1.8.1,<1.9
dj19: Django>=1.9,<1.10
postgres: psycopg2>=2.6
mysql: mysqlclient==1.3.6
setenv =
postgres: DATABASE_ENGINE=django.db.backends.postgresql_psycopg2
mysql: DATABASE_ENGINE=django.db.backends.mysql
mysql: DATABASE_USER=wagtail
mysql: DATABASE_HOST=localhost
mysql: DATABASE_USER=root
[testenv:flake8]
basepython=python3.4
deps=flake8>=2.2.0
commands=flake8 wagtail