From 5b99ce878d28095316a47f6cffc5e05ff1a02b76 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Tue, 14 Feb 2023 15:00:14 +0100 Subject: [PATCH] Fix notrait syntax --- eng/pipelines/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/build.yml b/eng/pipelines/build.yml index 9e8a061625d..df0d43f7ffa 100644 --- a/eng/pipelines/build.yml +++ b/eng/pipelines/build.yml @@ -90,7 +90,7 @@ jobs: $(_OfficialBuildIdArgs) $(_InternalRuntimeDownloadArgs) /p:Coverage=$(_Coverage) - /p:TestRunnerAdditionalArguments='-notrait Category=IgnoreForCI -notrait failing' + /p:TestRunnerAdditionalArguments='-notrait Category=IgnoreForCI -notrait Category=failing' /bl:$(BUILD.SOURCESDIRECTORY)\artifacts\log\$(_BuildConfig)\Test-${{ parameters.targetArchitecture }}.binlog /m:1 displayName: Run Unit Tests @@ -105,7 +105,7 @@ jobs: /p:TargetArchitecture=${{ parameters.targetArchitecture }} $(_OfficialBuildIdArgs) $(_InternalRuntimeDownloadArgs) - /p:TestRunnerAdditionalArguments='-notrait Category=IgnoreForCI -notrait failing' + /p:TestRunnerAdditionalArguments='-notrait Category=IgnoreForCI -notrait Category=failing' /bl:$(BUILD.SOURCESDIRECTORY)\artifacts\log\$(_BuildConfig)\IntegrationTest-${{ parameters.targetArchitecture }}.binlog /m:1 displayName: Run Integration Tests