123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- [tox]
- skipsdist = True
- usedevelop = True
- envlist = py{34,35,36,37}-dj{20,21,22,master}-{sqlite,postgres,mysql,mssql}-{elasticsearch6,elasticsearch5,elasticsearch2,noelasticsearch},
- [flake8]
- ignore = D100,D101,D102,D103,D105,D200,D202,D204,D205,D209,D400,D401,E303,E501,W503,N805,N806
- [testenv]
- install_command = pip install -e ".[testing]" -U {opts} {packages}
- commands =
- elasticsearch2: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch2
- elasticsearch5: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch5
- elasticsearch6: coverage run runtests.py wagtail.search wagtail.documents wagtail.images --elasticsearch6
- noelasticsearch: coverage run runtests.py {posargs}
- basepython =
- py34: python3.4
- py35: python3.5
- py36: python3.6
- py37: python3.7
- deps =
- django-sendfile==0.3.6
- Embedly
- dj20: Django>=2.0,<2.1
- dj21: Django>=2.1,<2.2
- dj22: git+https://github.com/django/django.git@stable/2.2.x
- djmaster: git+https://github.com/django/django.git@master
- postgres: psycopg2>=2.6
- mysql: mysqlclient>=1.3.7,<1.4
- elasticsearch2: elasticsearch>=2,<3
- elasticsearch5: elasticsearch>=5,<6
- elasticsearch5: certifi
- elasticsearch6: elasticsearch>=6,<6.3.1
- elasticsearch6: certifi
- setenv =
- postgres: DATABASE_ENGINE=django.db.backends.postgresql
- mysql: DATABASE_ENGINE=django.db.backends.mysql
- mysql: DATABASE_HOST=localhost
- mysql: DATABASE_USER=root
- sqlite: DATABASE_NAME=wagtail.db
-
-
- mssql: DATABASE_ENGINE=sql_server.pyodbc
- mssql: DATABASE_HOST=(local)\SQL2016
- mssql: DATABASE_NAME=master
- mssql: DATABASE_USER=sa
- mssql: DATABASE_PASS=Password12!
- [testenv:flake8]
- basepython=python3.4
- deps=flake8>=2.2.0
- commands=flake8 wagtail
|