use crate::common::*; #[test] fn dotenv() { let tmp = temptree! { ".env": "KEY=ROOT", sub: { ".env": "KEY=SUB", justfile: "default:\n\techo KEY=$KEY", }, }; let binary = executable_path("just"); let output = Command::new(binary) .current_dir(tmp.path()) .arg("sub/default") .output() .expect("just invocation failed"); assert_eq!(output.status.code().unwrap(), 0); let stdout = str::from_utf8(&output.stdout).unwrap(); assert_eq!(stdout, "KEY=SUB\n"); } test! { name: set_false, justfile: r#" set dotenv-load := false foo: if [ -n "${DOTENV_KEY+1}" ]; then echo defined; else echo undefined; fi "#, stdout: "undefined\n", stderr: "if [ -n \"${DOTENV_KEY+1}\" ]; then echo defined; else echo undefined; fi\n", } test! { name: set_implicit, justfile: r#" set dotenv-load foo: echo $DOTENV_KEY "#, stdout: "dotenv-value\n", stderr: "echo $DOTENV_KEY\n", } test! { name: set_true, justfile: r#" set dotenv-load := true foo: echo $DOTENV_KEY "#, stdout: "dotenv-value\n", stderr: "echo $DOTENV_KEY\n", } #[test] fn warning() { Test::new() .justfile( " foo: echo $DOTENV_KEY ", ) .stdout("dotenv-value\n") .stderr( " warning: A `.env` file was found and loaded, but this behavior will change in the future. To \ silence this warning and continue loading `.env` files, add: set dotenv-load := true To silence \ this warning and stop loading `.env` files, add: set dotenv-load := false This warning may \ also be silenced by setting the `JUST_SUPPRESS_DOTENV_LOAD_WARNING` environment variable to `1`. \ This can be used to silence the warning globally by adding the following line to your shell rc \ file: export JUST_SUPPRESS_DOTENV_LOAD_WARNING=1 See https://github.com/casey/just/issues/469 \ for more details. echo $DOTENV_KEY ", ) .suppress_dotenv_load_warning(false) .run(); }