Skip to content

Commit da751b6

Browse files
committed
Ignore the global filter
When setting the filter we will hit this test stage, but since we only compile the Azure Functions Samples here we will hit an application not found issue. We should look into this to make it better though
1 parent bef226e commit da751b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tracer/build/_build/Build.Steps.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1900,7 +1900,7 @@ private string AddAreaFilter(string filter)
19001900
//.WithMemoryDumpAfter(timeoutInMinutes: 30)
19011901
.EnableNoRestore()
19021902
.EnableNoBuild()
1903-
.SetFilter(string.IsNullOrWhiteSpace(Filter) ? "(RunOnWindows=True)&(Category=AzureFunctions)&(SkipInCI!=True)" : Filter)
1903+
.SetFilter("(RunOnWindows=True)&(Category=AzureFunctions)&(SkipInCI!=True)") // FIXME: ignoring the global Filter as when set it may cause issues
19041904
.SetTestTargetPlatform(TargetPlatform)
19051905
.SetIsDebugRun(isDebugRun)
19061906
.SetProcessEnvironmentVariable("MonitoringHomeDirectory", MonitoringHomeDirectory)

0 commit comments

Comments
 (0)