You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exercises `getEnv(name, { tracked: false })`. The runner still serves the env value, but the value does not enter the post-run fingerprint, so changing it later replays the cached output.
179
+
"""
180
+
ignore = true
181
+
steps = [
182
+
{ argv = [
183
+
"vt",
184
+
"run",
185
+
"fetch-env-untracked",
186
+
], envs = [
187
+
[
188
+
"PROBE_ENV",
189
+
"first",
190
+
],
191
+
], comment = "first run serves PROBE_ENV without tracking it" },
192
+
{ argv = [
193
+
"vt",
194
+
"run",
195
+
"fetch-env-untracked",
196
+
], envs = [
197
+
[
198
+
"PROBE_ENV",
199
+
"second",
200
+
],
201
+
], comment = "cache hit: PROBE_ENV changed but was requested with tracked: false" },
Exercises `getEnv(name, { tracked: false })`. The runner still serves the env value, but the value does not enter the post-run fingerprint, so changing it later replays the cached output.
0 commit comments