Skip to content

Commit

Permalink
Remove airship-tempest-plugin from blacklist
Browse files Browse the repository at this point in the history
This commit removes airship-tempest-plugin entry from the BLACKLIST
since the patch was already merged. And airship/tempest-plugin has a
gate job to verify it, too. There is no reason to store it in the
BLACKLIST anymore.

And this commit also make plugin-sanity-check's basepython python3
because we should use it as a default.

Change-Id: I9c50d327df65fecf8510f6f54f06e9f42da9bea0
  • Loading branch information
masayukig committed May 16, 2019
1 parent ab3f72b commit 8460cb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions tools/tempest-plugin-sanity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ PROJECT_LIST="$(python tools/generate-tempest-plugins-list.py)"
# List of projects having tempest plugin stale or unmaintained for a long time
# (6 months or more)
# TODO(masayukig): Some of these can be removed from BLACKLIST in the future.
# airship-tempest-plugin: https://review.openstack.org/#/c/634387/
# barbican-tempest-plugin: https://review.openstack.org/#/c/634631/
# intel-nfv-ci-tests: https://review.openstack.org/#/c/634640/
# networking-ansible: https://review.openstack.org/#/c/634647/
Expand All @@ -61,7 +60,6 @@ PROJECT_LIST="$(python tools/generate-tempest-plugins-list.py)"
# valet: https://review.openstack.org/#/c/638339/
# vitrage-tempest-plugin: https://review.openstack.org/#/c/639003/
BLACKLIST="
airship-tempest-plugin
barbican-tempest-plugin
intel-nfv-ci-tests
networking-ansible
Expand Down Expand Up @@ -94,7 +92,7 @@ function clone_project() {
# function to create virtualenv to perform sanity operation
function prepare_workspace() {
SANITY_DIR=$(pwd)
virtualenv --clear "$SANITY_DIR"/.venv
virtualenv -p python3 --clear "$SANITY_DIR"/.venv
export TVENV="$SANITY_DIR/tools/with_venv.sh"
cd "$SANITY_DIR"

Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ commands = bindep test

[testenv:plugin-sanity-check]
# perform tempest plugin sanity
basepython = python3
whitelist_externals = bash
commands =
bash tools/tempest-plugin-sanity.sh

0 comments on commit 8460cb1

Please sign in to comment.