Force latest dependency installation when running tox.

This commit is contained in:
Lance Edgar 2014-11-08 16:17:31 -06:00
parent a28f956549
commit 3fa9f06457

14
tox.ini
View file

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
[tox]
envlist = py26, py27
@ -9,14 +7,20 @@ deps =
fixture
mock
nose
commands = nosetests {posargs}
commands =
pip install Tailbone
nosetests {posargs}
[testenv:coverage]
basepython = python
commands = nosetests {posargs:--with-coverage --cover-html-dir={envtmpdir}/coverage}
commands =
pip install Tailbone
nosetests {posargs:--with-coverage --cover-html-dir={envtmpdir}/coverage}
[testenv:docs]
basepython = python
deps = Sphinx
changedir = docs
commands = sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs
commands =
pip install Tailbone
sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs