aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/README.md
diff options
context:
space:
mode:
authorpmikus <peter.mikus@protonmail.ch>2023-05-24 13:24:19 +0000
committerpmikus <peter.mikus@protonmail.ch>2023-05-24 13:24:19 +0000
commitfeac1add7b15bb7d66da1320bb6a6e95a722c504 (patch)
tree445bf87a249b7a63916a40055dd9b1737666a782 /resources/tools/presentation/README.md
parentd164bef0373edfd2b6cc7d4aaa27b928065df3e5 (diff)
remove(tools): presentation, docs
Signed-off-by: pmikus <peter.mikus@protonmail.ch> Change-Id: Icc07d18b9c0bd00af157bb817205e5b54824d525
Diffstat (limited to 'resources/tools/presentation/README.md')
-rw-r--r--resources/tools/presentation/README.md52
1 files changed, 0 insertions, 52 deletions
diff --git a/resources/tools/presentation/README.md b/resources/tools/presentation/README.md
deleted file mode 100644
index 605cb52df4..0000000000
--- a/resources/tools/presentation/README.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# Presentation and Analytics Layer
-
-Presentation and Analytics Layer (PAL) makes possible to present and
-analyse the test results generated by CSIT Jenkins jobs.
-
-## Using PAL in the Local mode
-
-The local mode makes possible to use:
-1. a single XML file,
-2. a directory with XML files, or
-3. a directory with directories of XML files.
-
-### Using a single XML file
-
-Run the script with the path to a local XML file, e.g.:
-
- ./run_local_report.sh --file output.xml
-
-### Using a directory of XML files
-
-Store all XML files in a directory, e.g.:
-
- csit-vpp-perf-verify-2001-3n-icx/
- ├── csit-vpp-perf-verify-2001-3n-icx__5__output_info.xml
- ├── csit-vpp-perf-verify-2001-3n-icx__6__output_info.xml
- └── csit-vpp-perf-verify-2001-3n-icx__7__output_info.xml
-
-and use:
-
- ./run_local_report.sh --directory csit-vpp-perf-verify-2001-3n-icx/
-
-### Using a directory with directories of XML files.
-
-Store all XML files in a directory structure, e.g.:
-
- local/
- ├── csit-vpp-perf-verify-2001-2n-clx
- │   ├── csit-vpp-perf-verify-2001-2n-clx__28__output_info.xml
- │   └── csit-vpp-perf-verify-2001-2n-clx__29__output_info.xml
- └── csit-vpp-perf-verify-2001-3n-icx
- ├── csit-vpp-perf-verify-2001-3n-icx__5__output_info.xml
- ├── csit-vpp-perf-verify-2001-3n-icx__6__output_info.xml
- └── csit-vpp-perf-verify-2001-3n-icx__7__output_info.xml
-
-and use:
-
- ./run_local_report.sh --directory local/
-
-### Example
-
-For more information and for a running example see the specificaton file
-`specification_local.yaml`.