mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
My system python installs are completely clean except for virtualenv, so tox needs a complete set of non-default modules.
27 lines
499 B
INI
27 lines
499 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
|
|
lxml
|
|
|
|
[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
|
|
lxml
|