From 6c8f4b41b0edb87b38f9c385ca1db187c11a11e9 Mon Sep 17 00:00:00 2001 From: ecpullen Date: Fri, 3 Feb 2023 17:59:17 +0000 Subject: [PATCH] testsys: Fix incorrect env for `TESTSYS_TESTS_DIR` --- tools/testsys/src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testsys/src/run.rs b/tools/testsys/src/run.rs index 3fbf56ffad3..6565ab0466b 100644 --- a/tools/testsys/src/run.rs +++ b/tools/testsys/src/run.rs @@ -45,7 +45,7 @@ pub(crate) struct Run { test_config_path: PathBuf, /// The path to the `tests` directory - #[clap(long, env = "TESTSYS_FOLDER", parse(from_os_str))] + #[clap(long, env = "TESTSYS_TESTS_DIR", parse(from_os_str))] tests_directory: PathBuf, /// The path to the EKS-A management cluster kubeconfig for vSphere K8s cluster creation