File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
tests/fixtures/scenarios/atmos-terraform-output-yaml-function Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,17 @@ import (
14
14
)
15
15
16
16
func TestYamlFuncTerraformOutput (t * testing.T ) {
17
- log .SetLevel (log .DebugLevel )
17
+ err := os .Unsetenv ("ATMOS_CLI_CONFIG_PATH" )
18
+ if err != nil {
19
+ t .Fatalf ("Failed to unset 'ATMOS_CLI_CONFIG_PATH': %v" , err )
20
+ }
21
+
22
+ err = os .Unsetenv ("ATMOS_BASE_PATH" )
23
+ if err != nil {
24
+ t .Fatalf ("Failed to unset 'ATMOS_BASE_PATH': %v" , err )
25
+ }
26
+
27
+ log .SetLevel (log .InfoLevel )
18
28
log .SetOutput (os .Stdout )
19
29
20
30
stack := "nonprod"
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ stacks:
20
20
21
21
logs :
22
22
file : " /dev/stderr"
23
- level : Debug
23
+ level : Info
24
24
25
25
# `Go` templates in Atmos manifests
26
26
# https://atmos.tools/core-concepts/stacks/templates
You can’t perform that action at this time.
0 commit comments