From a33296ed0a814a06613dfa26723d77f2ffc268d5 Mon Sep 17 00:00:00 2001 From: Martin Kopec Date: Sun, 7 Mar 2021 14:25:01 +0000 Subject: [PATCH] Target name in the downloaded list's name When downloading a test list from [1] (click on Test List link) include the target name in the filename. Example for the orchestration target: Current name of the file would be: 2020.11-test-list.txt The new name will be: orchestration.2020.11-test-list.txt Or the compute target: 2020.11-test-list.txt -> compute.2020.11-test-list.txt [1] https://refstack.openstack.org/#/guidelines Change-Id: I3337120e16e59c9e48a6a0b1d37f877e4b839a13 --- .../app/components/guidelines/partials/testListModal.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/refstack-ui/app/components/guidelines/partials/testListModal.html b/refstack-ui/app/components/guidelines/partials/testListModal.html index 7cda51d5..31bc83f8 100644 --- a/refstack-ui/app/components/guidelines/partials/testListModal.html +++ b/refstack-ui/app/components/guidelines/partials/testListModal.html @@ -22,7 +22,7 @@

Alternatively, get the test list directly from the API on your CLI:

- wget "{{modal.testListUrl}}" -O {{modal.version}}-test-list.txt + wget "{{modal.testListUrl}}" -O {{modal.target}}.{{modal.version}}-test-list.txt