From b95c79c9e3f4d0b373b604eb2e165942b5a12c05 Mon Sep 17 00:00:00 2001 From: Liam Young Date: Thu, 11 Jun 2020 15:53:51 +0000 Subject: [PATCH] Include templates --- MANIFEST.in | 1 + setup.py | 1 + .../charm_tests/tempest/templates/__init__.py | 15 --------------- 3 files changed, 2 insertions(+), 15 deletions(-) create mode 100644 MANIFEST.in delete mode 100644 zaza/openstack/charm_tests/tempest/templates/__init__.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..96aeb92 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include zaza/openstack *.j2 diff --git a/setup.py b/setup.py index a77d425..f4e31f8 100644 --- a/setup.py +++ b/setup.py @@ -108,6 +108,7 @@ setup( license='Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0', packages=find_packages(exclude=["unit_tests"]), zip_safe=False, + include_package_data=True, cmdclass={'test': Tox}, install_requires=install_require, extras_require={ diff --git a/zaza/openstack/charm_tests/tempest/templates/__init__.py b/zaza/openstack/charm_tests/tempest/templates/__init__.py deleted file mode 100644 index 9269e37..0000000 --- a/zaza/openstack/charm_tests/tempest/templates/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 2020 Canonical Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Collection of templates for tempest."""