diff --git a/modules/cnf-measuring-latency.adoc b/modules/cnf-measuring-latency.adoc index 250f84fca8..67e08afa1c 100644 --- a/modules/cnf-measuring-latency.adoc +++ b/modules/cnf-measuring-latency.adoc @@ -49,6 +49,8 @@ The tests introduce the following environment variables: |`MAXIMUM_LATENCY` |Unified variable that specifies the maximum acceptable latency in microseconds. Applicable for all available latency tools. +|`LATENCY_TEST_RUN` +|Boolean parameter that indicates whether the tests should run. `LATENCY_TEST_RUN` is set to `false` by default. To run the latency tests, set this value to `true`. |==== [NOTE] diff --git a/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc b/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc index 2055f885ce..1ef4f9ae25 100644 --- a/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc +++ b/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc @@ -29,7 +29,7 @@ You provide the test image with a `kubeconfig` file in current directory and its [source,terminal,subs="attributes+"] ---- $ podman run -v $(pwd)/:/kubeconfig:Z -e KUBECONFIG=/kubeconfig/kubeconfig \ --e DISCOVERY_MODE=true registry.redhat.io/openshift4/cnf-tests-rhel8:v{product-version} \ +-e LATENCY_TEST_RUN=true -e DISCOVERY_MODE=true registry.redhat.io/openshift4/cnf-tests-rhel8:v{product-version} \ /usr/bin/test-run.sh -ginkgo.focus="\[performance\]\ Latency\ Test" ----