From 7d76fbc9c83f09f83af9347c3d9f8f5f99d4f6e4 Mon Sep 17 00:00:00 2001 From: Hidekazu Nakamura Date: Wed, 13 Apr 2016 15:27:02 +0900 Subject: [PATCH] Fix Devstack and app-catalog-ui interaction Devstack always installs test-requirements, but we do not expect it for app-catalog-ui. Moreover, such installation started failing with PIP versions 8.x Change-Id: I92be3ee00efd4b94d4a05d09a3a80aa778747e9d Closes-Bug: #1569700 --- devstack/plugin.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index deefe13..f5cfa3f 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -1,7 +1,11 @@ # plugin.sh - DevStack plugin.sh dispatch script app-catalog-ui function install_app-catalog-ui { + mv $APP_CAT_UI_DIR/test-requirements.txt $APP_CAT_UI_DIR/_test-requirements.txt + setup_develop $APP_CAT_UI_DIR + + mv $APP_CAT_UI_DIR/_test-requirements.txt $APP_CAT_UI_DIR/test-requirements.txt } function configure_app-catalog-ui {