From 4fe39204c38d73c5c99410fc687f1d7b08ab07d3 Mon Sep 17 00:00:00 2001 From: "He-Pin(kerr)" Date: Sat, 25 Jan 2025 21:48:29 +0800 Subject: [PATCH] chore: Add some note to MILL_TEST_RESOURCE_DIR (#4403) Motivation: Add some doc about the `MILL_TEST_RESOURCE_DIR` --- main/client/src/mill/main/client/EnvVars.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main/client/src/mill/main/client/EnvVars.java b/main/client/src/mill/main/client/EnvVars.java index ff7ab053963..07532340e84 100644 --- a/main/client/src/mill/main/client/EnvVars.java +++ b/main/client/src/mill/main/client/EnvVars.java @@ -9,7 +9,10 @@ public class EnvVars { /** * Available in test modules for users to find the test resource folder on disk * in a convenient fashion. If multiple resource folders are provided on the classpath, - * they are provided as a comma-separated list + * they are provided as a comma-separated list. + *

+ * NOTE: only exists when running tests using Mill, and is not available when executing applications packaged + * for deployment via .assembly */ public static final String MILL_TEST_RESOURCE_DIR = "MILL_TEST_RESOURCE_DIR";