We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95504f0 commit 2aa9614Copy full SHA for 2aa9614
src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/RunnerTests.cs
@@ -17,6 +17,14 @@ public RunnerTests(Xunit.Abstractions.ITestOutputHelper output)
17
[Fact]
18
public void ExecuteRunnerTests()
19
{
20
+ var mode = Environment.GetEnvironmentVariable("AZURE_TEST_MODE");
21
+ var csmAuth = Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION");
22
+
23
+ if (mode == null || csmAuth == null || mode.ToLower() != "record")
24
+ {
25
+ return;
26
+ }
27
28
var testFile = File.ReadAllLines("ScenarioTests\\RunnerTests.csv");
29
foreach (var line in testFile)
30
0 commit comments