From d07d41fee3c40385f223c8ac9533f8d98e69de35 Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Tue, 2 Apr 2019 08:24:25 -0500 Subject: [PATCH] [DevStack] WSME doesn't always get installed, force it The jobs are working here but stx-nfv devstack fails in fm-rest-api, what fun it is to find a transient dependency! fm-rest-api has apparently never started correctly but we did not properly detect that until getting the stx-nfv plugin up. Add requirements.txt and test-requirements.txt, only test-requirements.txt is directly used by DevStack but WSME is not a test-only dependency... Cleanup to follow: * properly get the dependencies of the service documented for pip * properly detect when fm-rest-api fails to start under systemd Change-Id: I91236d2bbb785c75264e8c4772d4ad6dfa45562c Signed-off-by: Dean Troyer --- fm-rest-api/fm/requirements.txt | 1 + fm-rest-api/fm/test-requirements.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 fm-rest-api/fm/requirements.txt create mode 100644 fm-rest-api/fm/test-requirements.txt diff --git a/fm-rest-api/fm/requirements.txt b/fm-rest-api/fm/requirements.txt new file mode 100644 index 00000000..40a71a85 --- /dev/null +++ b/fm-rest-api/fm/requirements.txt @@ -0,0 +1 @@ +WSME # MIT \ No newline at end of file diff --git a/fm-rest-api/fm/test-requirements.txt b/fm-rest-api/fm/test-requirements.txt new file mode 100644 index 00000000..bc04b496 --- /dev/null +++ b/fm-rest-api/fm/test-requirements.txt @@ -0,0 +1 @@ +-r requirements.txt