Files
deb-python-django-compressor/tox.ini
Daniel Hahler a13c143e26 contrib.sekizai: fix double-rendering: use TextNode, not Template
Use `TextNode(data)` instead of `Template(data).nodelist` to parse the
template only once.

The report and fix was initially provided by Aaron McMillin.

Fixes #361
Closes #362
2015-09-22 19:51:30 +02:00

78 lines
1.5 KiB
INI

[deps]
two =
flake8==2.4.0
coverage==3.7.1
html5lib==0.999
mock==1.0.1
Jinja2==2.7.3
lxml==3.4.2
BeautifulSoup==3.2.1
unittest2==1.0.0
jingo==0.7
coffin==0.4.0
django-sekizai==0.8.2
two_six =
flake8==2.4.0
coverage==3.7.1
html5lib==0.999
mock==1.0.1
Jinja2==2.7.3
lxml==3.4.2
BeautifulSoup==3.2.1
unittest2==1.0.0
jingo==0.7
coffin==0.4.0
django-sekizai==0.8.2
three =
flake8==2.4.0
coverage==3.7.1
html5lib==0.999
mock==1.0.1
Jinja2==2.7.3
lxml==3.4.2
beautifulsoup4==4.4.0
jingo==0.7
coffin==0.4.0
django-sekizai==0.8.2
three_two =
flake8==2.4.0
coverage==3.7.1
html5lib==0.999
mock==1.0.1
Jinja2==2.6
lxml==3.4.2
beautifulsoup4==4.4.0
jingo==0.7
coffin==0.4.0
django-sekizai==0.8.2
[tox]
envlist =
{py26,py27}-1.4.X,
{py27,py32,py33,py34}-{1.7.X},
{py27,py32,py33,py34}-{1.8.X}
[testenv]
basepython =
py26: python2.6
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
usedevelop = true
setenv =
CPPFLAGS=-O0
whitelist_externals = /usr/bin/make
downloadcache = {toxworkdir}/_download/
commands =
django-admin.py --version
make test
deps =
1.4.X: Django>=1.4,<1.5
1.7.X: Django>=1.7,<1.8
1.8.X: Django>=1.8,<1.9
py26: {[deps]two_six}
py27: {[deps]two}
py32: {[deps]three_two}
py33: {[deps]three}
py34: {[deps]three}
django-discover-runner