forked from jazzband/django-polymorphic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
37 lines (34 loc) · 809 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
[tox]
envlist =
py36-django{22,30,31}
py37-django{22,30,31}
py38-django{22,30,31,32}
py39-django{40}
docs
[testenv]
setenv =
PYTHONWARNINGS = all
postgres: DEFAULT_DATABASE = postgres:///default
postgres: SECONDARY_DATABASE = postgres:///secondary
deps =
coverage
dj-database-url
django21: Django ~= 2.1
django22: Django ~= 2.2
django30: Django ~= 3.0
django31: Django ~= 3.1
django40: Django==4.0b1
djangomain: https://github.com/django/django/archive/main.tar.gz
postgres: psycopg2
commands =
coverage run --source polymorphic runtests.py
[testenv:docs]
deps =
Sphinx
sphinx_rtd_theme
-r{toxinidir}/docs/_ext/djangodummy/requirements.txt
changedir = docs
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[flake8]
# ignore line size
max-line-length = 300