commit 937a1bad42842f215e745d033eda67f5cefc866c
parent 8f7b446c6c51baa6053b9297b8087ad66e058352
Author: Erik Loualiche <eloualic@umn.edu>
Date: Sun, 22 Mar 2026 11:06:15 -0500
Clarify env parsing idiom in test runner [skip ci]
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/runtests.jl b/test/runtests.jl
@@ -30,7 +30,7 @@ if isfile(env_file)
env_WRDS = String(take!(io))
# populate the environment variables
for line in split(env_WRDS, "\n")
- !startswith(line, "#") || continue
+ startswith(line, "#") && continue
isempty(strip(line)) && continue
if contains(line, "=")
key, value = split(line, "=", limit=2)