summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJohannes Erdfelt <johannes.erdfelt@rackspace.com>2013-01-21 16:22:01 +0000
committerJohannes Erdfelt <johannes.erdfelt@rackspace.com>2013-01-21 16:24:20 +0000
commit254333a78d960fc800a35b4c0680b160da9a956e (patch)
tree04a43f45f909753a75032d024e4105a667426c4b /tools
parentcd4093e0f2a7d07fa81915dc4866f4ac7324a028 (diff)
downloadnova-254333a78d960fc800a35b4c0680b160da9a956e.tar.gz
nova-254333a78d960fc800a35b4c0680b160da9a956e.tar.xz
nova-254333a78d960fc800a35b4c0680b160da9a956e.zip
Avoid testtools 0.9.25
Fixes bug 1102400 testtools 0.9.25 introduces a new dependency on the 'extras' package, but it does so in a way to prevents itself from being installed without the 'extras' package already installed. Work around the problem for now by avoiding the problematic release. Change-Id: Ib42ffc67f00db62f9b829069c00476632daae94f
Diffstat (limited to 'tools')
-rw-r--r--tools/test-requires3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/test-requires b/tools/test-requires
index 5f195d5c1..c691a6bca 100644
--- a/tools/test-requires
+++ b/tools/test-requires
@@ -12,4 +12,5 @@ pylint==0.25.2
python-subunit
sphinx>=1.1.2
testrepository>=0.0.13
-testtools>=0.9.22
+# testtools 0.9.25 is broken, change this when upstream is fixed (bug 1102400)
+testtools>=0.9.22,<=0.9.24