summaryrefslogtreecommitdiff
path: root/tools/generate-tempest-plugins-list.py
diff options
context:
space:
mode:
authorMasayuki Igawa <masayuki@igawa.io>2020-04-13 09:32:11 +0900
committerMasayuki Igawa <masayuki@igawa.io>2020-04-13 09:32:11 +0900
commit14d66b6a26cd4697426248146fe186657a9e1103 (patch)
tree7e54b1641909bdef8ba303c8f65f8078405f9f9c /tools/generate-tempest-plugins-list.py
parent91f0e008821b3d7be21a62da5706d51e9a30e1e2 (diff)
downloadtempest-14d66b6a26cd4697426248146fe186657a9e1103.tar.gz
Add glare and taas to blacklist
This commit adds x/glare and x/tap-as-a-service to the BLACKLIST to avoid sanity-job failures like following. Failed Plugins: x/glare, x/tap-as-a-service, + [[ -n x/glare, x/tap-as-a-service, ]] + exit 1 It looks the root cause is related to pg_config installation but not sure. So, this commit just blacklists them as a workaround. Error: pg_config executable not found. Change-Id: I03c6f01593b8e414b5e111d0e0c971ae156da715
Diffstat (limited to 'tools/generate-tempest-plugins-list.py')
-rw-r--r--tools/generate-tempest-plugins-list.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/generate-tempest-plugins-list.py b/tools/generate-tempest-plugins-list.py
index c5059085e..5ffef3e82 100644
--- a/tools/generate-tempest-plugins-list.py
+++ b/tools/generate-tempest-plugins-list.py
@@ -36,6 +36,7 @@ from urllib3.util import retry
# when the patches are merged.
BLACKLIST = [
'x/gce-api', # It looks gce-api doesn't support python3 yet.
+ 'x/glare', # To avoid sanity-job failure
'x/group-based-policy', # It looks this doesn't support python3 yet.
'x/intel-nfv-ci-tests', # https://review.opendev.org/#/c/634640/
'openstack/networking-generic-switch',
@@ -48,6 +49,7 @@ BLACKLIST = [
'openstack/neutron-dynamic-routing',
# https://review.opendev.org/#/c/637718/
'openstack/neutron-vpnaas', # https://review.opendev.org/#/c/637719/
+ 'x/tap-as-a-service', # To avoid sanity-job failure
'x/valet', # https://review.opendev.org/#/c/638339/
'x/kingbird', # https://bugs.launchpad.net/kingbird/+bug/1869722
]