Skip to content
Snippets Groups Projects
Commit 64f05d7a authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "CI: Move NFV reqs installation to where it belongs"

parents ffd7bc90 73168150
No related branches found
No related tags found
No related merge requests found
......@@ -48,16 +48,10 @@ function test_heat {
openstack stack list
}
function install_requirements {
echo "TESTING: Install requirements"
pip install "python-tackerclient" "python-heatclient" "networking-sfc" "python-mistralclient" "python-barbicanclient"
}
function test_scenario_nfv_logged {
. /etc/kolla/admin-openrc.sh
. ~/openstackclient-venv/bin/activate
install_requirements
test_tacker
test_barbican
test_mistral
......
......@@ -20,6 +20,9 @@ function setup_openstack_clients {
if [[ $SCENARIO == masakari ]]; then
packages+=(python-masakariclient)
fi
if [[ $SCENARIO == scenario_nfv ]]; then
packages+=(python-tackerclient python-barbicanclient python-mistralclient)
fi
if [[ "debian" == $BASE_DISTRO ]]; then
sudo apt -y install python3-venv
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment