Force latest dependency installation when running tox.
This commit is contained in:
parent
a28f956549
commit
3fa9f06457
14
tox.ini
14
tox.ini
|
@ -1,5 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py26, py27
|
envlist = py26, py27
|
||||||
|
|
||||||
|
@ -9,14 +7,20 @@ deps =
|
||||||
fixture
|
fixture
|
||||||
mock
|
mock
|
||||||
nose
|
nose
|
||||||
commands = nosetests {posargs}
|
commands =
|
||||||
|
pip install Tailbone
|
||||||
|
nosetests {posargs}
|
||||||
|
|
||||||
[testenv:coverage]
|
[testenv:coverage]
|
||||||
basepython = python
|
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]
|
[testenv:docs]
|
||||||
basepython = python
|
basepython = python
|
||||||
deps = Sphinx
|
deps = Sphinx
|
||||||
changedir = docs
|
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
|
||||||
|
|
Loading…
Reference in a new issue