Merge "Drop "docs" tox target and the docs integration"
diff --git a/heat_tempest_plugin/config.py b/heat_tempest_plugin/config.py
index c30981c..9e390dc 100644
--- a/heat_tempest_plugin/config.py
+++ b/heat_tempest_plugin/config.py
@@ -12,6 +12,12 @@
from oslo_config import cfg
+import os
+
+default_template = os.path.join(
+ os.path.dirname(os.path.realpath(__file__)),
+ 'tests/scenario/templates/boot_config_none_env.yaml')
+
service_available_group = cfg.OptGroup(name="service_available",
title="Available OpenStack Services")
@@ -106,8 +112,7 @@
default='public',
help="Visible floating network name "),
cfg.StrOpt('boot_config_env',
- default=('heat_tempest_plugin/tests/scenario/templates'
- '/boot_config_none_env.yaml'),
+ default=default_template,
help="Path to environment file which defines the "
"resource type Heat::InstallConfigAgent. Needs to "
"be appropriate for the image_ref."),
diff --git a/setup.cfg b/setup.cfg
index 91af1ec..3bdd080 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@
description-file =
README.rst
author = OpenStack
-author-email = openstack-dev@lists.openstack.org
+author-email = openstack-discuss@lists.openstack.org
home-page = http://docs.openstack.org/developer/heat-tempest-plugin
classifier =
Environment :: OpenStack