mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Jinja 2.7 (released 2013-05-20) supports only Python3 >=3.3 so it is time to drop Python 3.2 and move to 3.3
25 lines
481 B
INI
25 lines
481 B
INI
# This tests the unified codebase (py27, py33) of Pelican.
|
|
# depends on some external libraries that aren't released yet.
|
|
|
|
[tox]
|
|
envlist = py27,py33
|
|
|
|
[testenv]
|
|
commands =
|
|
python -m unittest discover
|
|
deps =
|
|
|
|
[testenv:py27]
|
|
deps =
|
|
mock
|
|
Markdown
|
|
BeautifulSoup4
|
|
typogrify
|
|
|
|
[testenv:py33]
|
|
deps =
|
|
mock
|
|
Markdown
|
|
BeautifulSoup4
|
|
git+https://github.com/dmdm/smartypants.git#egg=smartypants
|
|
git+https://github.com/dmdm/typogrify.git@py3k#egg=typogrify
|