From c73f88d1e1f43e60e7c1a82a5ad456aeae459a52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gull=C3=B3n?= Date: Mon, 17 Feb 2025 11:42:10 +0100 Subject: [PATCH 1/2] add support to define RF random test order --- test/run.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/run.sh b/test/run.sh index 21231e0c56..e3d0180b93 100755 --- a/test/run.sh +++ b/test/run.sh @@ -10,12 +10,13 @@ RF_VENV="${ROOTDIR}/_output/robotenv" RF_VARIABLES="${SCRIPTDIR}/variables.yaml" DRYRUN=false OUTDIR="${ROOTDIR}/_output/e2e-$(date +%Y%m%d-%H%M%S)" +RANDOMIZE=all function usage { local -r script_name=$(basename "$0") cat - < Date: Tue, 18 Feb 2025 10:41:58 +0100 Subject: [PATCH 2/2] Add RANDOMIZE valid values to usage() --- test/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run.sh b/test/run.sh index e3d0180b93..8aa8532a72 100755 --- a/test/run.sh +++ b/test/run.sh @@ -27,6 +27,7 @@ Options: -i PATH The variables file. (${RF_VARIABLES}) -k SKIP_TESTS Comma separated list of tests to skip. -r RANDOMIZE Define RF Test order (${RANDOMIZE}) + Valid values: all|suites|tests|none EOF }