Fix for enabling use of MOS8

Change-Id: I44ba8c13c6ba6f961a932b3b70a1de713aae80cb
This commit is contained in:
Olivier Bourdon 2016-10-18 11:41:56 +02:00
parent 16b0bafa2f
commit 7677b4eb20
1 changed files with 6 additions and 1 deletions

View File

@ -14,6 +14,11 @@ def get_requirements_list(requirements):
if 'devops' not in req and 'launchpadlib' not in req] if 'devops' not in req and 'launchpadlib' not in req]
return all_requirements return all_requirements
all_pkgs = ['fuelweb_test', 'gates_tests', 'core']
pkgs = []
for d in all_pkgs:
if os.path.isdir(d):
pkgs += [d]
setup( setup(
name='fuelweb_test', name='fuelweb_test',
@ -23,7 +28,7 @@ setup(
url='http://www.openstack.org/', url='http://www.openstack.org/',
author='OpenStack', author='OpenStack',
author_email='openstack-dev@lists.openstack.org', author_email='openstack-dev@lists.openstack.org',
packages=['fuelweb_test', 'gates_tests', 'core'], packages=pkgs,
include_package_data=True, include_package_data=True,
classifiers=[ classifiers=[
'Environment :: Linux', 'Environment :: Linux',