2015-04-03 15:38:08 +02:00
|
|
|
[tox]
|
|
|
|
skipsdist = True
|
|
|
|
usedevelop = True
|
|
|
|
|
2016-05-03 11:57:36 +02:00
|
|
|
envlist = py{27,33,34,35}-dj{18,19}-{sqlite,postgres,mysql}-{elasticsearch,noelasticsearch}, flake8
|
2015-04-03 15:38:08 +02:00
|
|
|
|
2015-04-03 17:54:52 +02:00
|
|
|
[flake8]
|
2015-12-04 11:00:15 +01:00
|
|
|
ignore = E501,E303
|
2015-04-03 18:37:50 +02:00
|
|
|
exclude = wagtail/project_template/*
|
2015-12-07 13:00:13 +01:00
|
|
|
max-line-length = 120
|
2015-04-03 15:38:08 +02:00
|
|
|
|
|
|
|
[testenv]
|
2016-05-03 11:57:36 +02:00
|
|
|
commands =
|
|
|
|
elasticsearch: coverage run runtests.py wagtail.wagtailsearch --elasticsearch
|
|
|
|
noelasticsearch: coverage run runtests.py
|
2015-04-03 15:38:08 +02:00
|
|
|
|
|
|
|
basepython =
|
|
|
|
py27: python2.7
|
|
|
|
py33: python3.3
|
|
|
|
py34: python3.4
|
2015-09-16 05:50:12 +02:00
|
|
|
py35: python3.5
|
2015-04-03 15:38:08 +02:00
|
|
|
|
|
|
|
deps =
|
2015-12-04 17:52:41 +01:00
|
|
|
django-modelcluster>=1.1b1
|
2015-12-08 23:02:38 +01:00
|
|
|
django-taggit>=0.17.5
|
2016-03-07 10:22:28 +01:00
|
|
|
django-treebeard>=3.0,<5.0
|
2015-04-10 05:44:41 +02:00
|
|
|
django-sendfile==0.3.6
|
2015-07-21 16:03:46 +02:00
|
|
|
djangorestframework==3.1.3
|
2014-07-28 16:01:21 +02:00
|
|
|
Pillow>=2.3.0
|
|
|
|
beautifulsoup4>=4.3.2
|
2015-12-09 00:46:45 +01:00
|
|
|
html5lib>=0.999,<1
|
2014-07-28 16:01:21 +02:00
|
|
|
Unidecode>=0.04.14
|
2014-07-02 18:31:06 +02:00
|
|
|
elasticsearch==1.1.0
|
2014-07-02 18:14:34 +02:00
|
|
|
mock==1.0.1
|
2014-07-18 15:54:30 +02:00
|
|
|
python-dateutil==2.2
|
2014-09-16 10:18:49 +02:00
|
|
|
pytz==2014.7
|
2014-07-28 16:01:21 +02:00
|
|
|
Embedly
|
2016-03-07 19:17:42 +01:00
|
|
|
Willow>=0.3b4,<0.4
|
2015-10-01 09:33:22 +02:00
|
|
|
jinja2==2.8
|
2014-07-28 16:01:21 +02:00
|
|
|
coverage
|
|
|
|
|
2016-01-05 18:38:29 +01:00
|
|
|
dj18: Django>=1.8.1,<1.9
|
|
|
|
dj19: Django>=1.9,<1.10
|
2015-04-03 15:38:08 +02:00
|
|
|
postgres: psycopg2>=2.6
|
|
|
|
mysql: mysqlclient==1.3.6
|
2014-07-28 16:01:21 +02:00
|
|
|
|
|
|
|
setenv =
|
2015-04-03 15:38:08 +02:00
|
|
|
postgres: DATABASE_ENGINE=django.db.backends.postgresql_psycopg2
|
2014-07-28 16:01:21 +02:00
|
|
|
|
2015-04-03 15:38:08 +02:00
|
|
|
mysql: DATABASE_ENGINE=django.db.backends.mysql
|
|
|
|
mysql: DATABASE_USER=wagtail
|
|
|
|
mysql: DATABASE_HOST=localhost
|
|
|
|
mysql: DATABASE_USER=root
|
2015-04-03 17:54:52 +02:00
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
basepython=python3.4
|
|
|
|
deps=flake8>=2.2.0
|
|
|
|
commands=flake8 wagtail
|