wagtail/tox.ini

45 wiersze
1016 B
INI
Czysty Zwykły widok Historia

2015-04-03 13:38:08 +00:00
[tox]
skipsdist = True
usedevelop = True
envlist = py{27,33,34,35}-dj{18,19}-{sqlite,postgres,mysql}-{elasticsearch,noelasticsearch}, flake8
2015-04-03 13:38:08 +00:00
[flake8]
2015-12-04 10:00:15 +00:00
ignore = E501,E303
2015-04-03 16:37:50 +00:00
exclude = wagtail/project_template/*
2015-12-07 12:00:13 +00:00
max-line-length = 120
2015-04-03 13:38:08 +00:00
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands =
elasticsearch: coverage run runtests.py wagtail.wagtailsearch --elasticsearch
noelasticsearch: coverage run runtests.py
2015-04-03 13:38:08 +00:00
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
2015-09-16 03:50:12 +00:00
py35: python3.5
2015-04-03 13:38:08 +00:00
deps =
2015-04-10 03:44:41 +00:00
django-sendfile==0.3.6
Embedly
dj18: Django>=1.8.1,<1.9
dj19: Django>=1.9,<1.10
2015-04-03 13:38:08 +00:00
postgres: psycopg2>=2.6
mysql: mysqlclient==1.3.6
setenv =
2015-04-03 13:38:08 +00:00
postgres: DATABASE_ENGINE=django.db.backends.postgresql_psycopg2
2015-04-03 13:38:08 +00:00
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