1f0c90f3a8
This patch updates the imported code to reflect octavia-dashboard. More work is required to make this work with the Octavia v2 API. This will be done in followup patches. Change-Id: I7363105a53642d0003036cada21c5b0cc25efc1a
14 lines
443 B
Bash
Executable File
14 lines
443 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# This script will be executed inside npm postinstall task, see package.json
|
|
|
|
# pull down the test shim from horizon master because it's not
|
|
# included in the installed horizon packages
|
|
if [ ! -f test-shim.js ];
|
|
then
|
|
wget -nv -t 3 https://raw.githubusercontent.com/openstack/horizon/master/test-shim.js
|
|
fi
|
|
|
|
echo "Creating a tox env which will contain xStatic libraries, horizon, and openstack_dashboard"
|
|
tox -epy27 --notest;
|