add required python modules(six,iso8601,fixtures) to requirements.txt

These modules of six, iso8601, fixtures, are requiementd by following tempest modules.
But they are missing in requirements.txt.

 ./tempest/openstack/common/log.py:42:from six import moves
 ./tempest/openstack/common/timeutils.py:25:import iso8601
 ./tempest/api/compute/admin/test_aggregates.py:18:import fixtures
 ./tempest/test.py:22:import fixtures

 Closes-Bug: #1225723

Change-Id: I5a43559630714c504dba4ef79ba9ee29128dfc69
This commit is contained in:
DennyZhang 2013-09-15 11:57:17 -05:00
parent f43c48f741
commit 820072967e
1 changed files with 3 additions and 0 deletions

View File

@ -19,3 +19,6 @@ keyring>=1.6.1
testrepository>=0.0.17
oslo.config>=1.1.0
eventlet>=0.13.0
six<1.4.0
iso8601>=0.1.4
fixtures>=0.3.14