summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2015-05-12 12:13:00 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2015-05-29 15:47:23 -0700
commit2e0eac09c4212ae6a25b2e02d7e14ee203fdd4eb (patch)
tree2181f51cc8775aa2e2315d055fb5564eeed0e965 /tox.ini
parent95e5879f301ad11d92cbabe3abd28bf1b867e401 (diff)
downloadtaskflow-2e0eac09c4212ae6a25b2e02d7e14ee203fdd4eb.tar.gz
Remove customized pyX.Y tox requirements
Instead of having custom pyX.Y that test a specific set of requirements and similar with other tox envs, just enable more test-requirements directly, in a later change we will use environment markers to denote the differences. Also tweaks the jobboard example to bypass/hack a needed eventlet fix into it so that it actually runs without breaking/never finishing. A TODO note has been left to eventually (someday?) remove this hack when it is no longer needed. Part of fix for bug 1445827 Change-Id: I0fb669f0bdfbe4fe81d89234173f2c3ac4d06de6
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini18
1 files changed, 0 insertions, 18 deletions
diff --git a/tox.ini b/tox.ini
index 3581fac..535e611 100644
--- a/tox.ini
+++ b/tox.ini
@@ -62,28 +62,10 @@ import_exceptions = six.moves
taskflow.test.mock
unittest.mock
-# NOTE(imelnikov): pyXY envs are considered to be default, so they must have
-# richest set of test requirements
-[testenv:py26]
-basepython = python2.6
-deps = {[testenv]deps}
- MySQL-python
- eventlet>=0.15.1
- SQLAlchemy>=0.7.8,<=0.8.99
-
[testenv:py27]
deps = {[testenv]deps}
- MySQL-python
- eventlet>=0.15.1
- SQLAlchemy>=0.7.8,<=0.9.99
doc8
commands =
python setup.py testr --slowest --testr-args='{posargs}'
sphinx-build -b doctest doc/source doc/build
doc8 doc/source
-
-[testenv:py34]
-deps = {[testenv]deps}
- SQLAlchemy>=0.7.8,<=0.9.99
- PyMySQL>=0.6.2
-