From afbe0594a4d212f10f77dbc1c9accd8b7d18c5e6 Mon Sep 17 00:00:00 2001 From: David Rabkin Date: Wed, 31 Jan 2024 19:37:12 +0200 Subject: [PATCH] Fix linter --- .../results/html/results.html | 232 +++++++++++++++++- script/run-container.sh | 6 +- 2 files changed, 233 insertions(+), 5 deletions(-) diff --git a/cnf-certification-test/results/html/results.html b/cnf-certification-test/results/html/results.html index 0b9f6388e..d64fa87f1 100644 --- a/cnf-certification-test/results/html/results.html +++ b/cnf-certification-test/results/html/results.html @@ -1 +1,231 @@ -This is a placeholder for the results.html file that will be downloaded from https://github.com/test-network-function/parser when this project is built \ No newline at end of file + + + + + CNF Certification Test Parser + + + + + + + + + + + + + + + + + + + + + + + +
+ Red Hat +

CNF Certification Test Parser

+
+

Upload file

+
+ +
+ +

Scenario

+
+ + + +
+ + +
+
+ + +
+
+ +

Results

+
+

+ Upload Feedback File: +

+ Download + Results + Download Feedback as a JSON file +
+
+
+
+
+ +
+ + Configuration + + +
+
+
+ Metadata + + + +
+
+
+ Nodes + + +
+
+
+ Results + + + + + + + + + + + + + + + + + + + + + + + Versions + + + +
+
+
+
+ + + + +
+ + + + + © 2022 Red Hat, Inc. + + + + + + + + + + + diff --git a/script/run-container.sh b/script/run-container.sh index fae5fff91..fa8a4ef30 100755 --- a/script/run-container.sh +++ b/script/run-container.sh @@ -145,12 +145,10 @@ fi # ${variable:-value} uses new value if undefined or null. ${variable:+value} # is opposite of the above. See: # https://www.grymoire.com/Unix/Sh.html#uh-36 -ADD_HOST_ARG=\ -"${TNF_ENABLE_CRC_TESTING:+--add-host api.crc.testing:host-gateway}" +ADD_HOST_ARG="${TNF_ENABLE_CRC_TESTING:+--add-host api.crc.testing:host-gateway}" CONTAINER_TNF_DOCKERCFG="${CONTAINER_TNF_DOCKERCFG:-NA}" DNS_ARG="${DNS_ARG:+--dns $DNS_ARG}" -TNF_OFFLINE_DB_MOUNT_ARG=\ -"${LOCAL_TNF_OFFLINE_DB:+-v $LOCAL_TNF_OFFLINE_DB:/usr/offline-db-ext:Z}" +TNF_OFFLINE_DB_MOUNT_ARG="${LOCAL_TNF_OFFLINE_DB:+-v $LOCAL_TNF_OFFLINE_DB:/usr/offline-db-ext:Z}" set -x # shellcheck disable=SC2068,SC2086 # Double quote array expansions.