diff options
-rw-r--r-- | openstack-common.conf | 2 | ||||
-rw-r--r-- | tools/patch_tox_venv.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/openstack-common.conf b/openstack-common.conf index 7a1d16f46..bfad2a7f5 100644 --- a/openstack-common.conf +++ b/openstack-common.conf @@ -19,10 +19,12 @@ module=log module=loopingcall module=network_utils module=notifier +module=patch_tox_venv module=periodic_task module=plugin module=policy module=processutils +module=redhat-eventlet.patch module=rootwrap module=rpc module=setup diff --git a/tools/patch_tox_venv.py b/tools/patch_tox_venv.py index 399acbcfc..6ae6c2e7f 100644 --- a/tools/patch_tox_venv.py +++ b/tools/patch_tox_venv.py @@ -28,7 +28,7 @@ def main(argv): pip_requires = os.path.join(root, 'tools', 'pip-requires') test_requires = os.path.join(root, 'tools', 'test-requires') py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1]) - project = 'Nova' + project = 'nova' install = install_venv.InstallVenv(root, venv, pip_requires, test_requires, py_version, project) #NOTE(dprince): For Tox we only run post_process (which patches files, etc) |