Add eventlet to test-requirements

eventlet isn't actually used by hacking, but its a common global import
(nova/__init__.py imports it) in OpenStack, so to make the hacking venvs
work with local hacks in repos that require eventlet, we just add it
here.

Since this is a test-requirement it shouldn't have any impact on
packaging of hacking.

Change-Id: I81098fb4f4debc2654d60ed28a02d64c5bbcedea
Closes-Bug: 1403270
This commit is contained in:
Joe Gordon 2014-12-16 17:34:21 -08:00
parent 74f0e6330e
commit 6c851bdf2f
1 changed files with 7 additions and 0 deletions

View File

@ -11,3 +11,10 @@ oslosphinx>=2.2.0 # Apache-2.0
testrepository>=0.0.18
testscenarios>=0.4
testtools>=0.9.36,!=1.2.0
# hacking doesn't use this anywhere, but nova imports this in nova/__init__.py
# since eventlet is such a common universal import, add it to the hacking test
# virtualenv, so importing things like 'nova.hacking.checks.factory' will just
# work.
# See https://bugs.launchpad.net/hacking/+bug/1403270
eventlet>=0.15.2