From 8235d0363c29a36cdd681344d3b004d2c9222a0f Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Thu, 22 Feb 2024 00:12:50 +0000 Subject: [PATCH] Run the OpenMcdf.Extensions unit tests in CI builds --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9da54dce..4a9c149f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,6 +15,7 @@ variables: appFramework: 'net6.0' # pay attention to slashes testsProject: 'sources/Test/OpenMcdf.Test/OpenMcdf.Test.csproj' + extensionTestsProject: 'sources/Test/OpenMcdf.Extensions.Test/OpenMcdf.Extensions.Test.csproj' buildProject: 'sources/OpenMcdf/OpenMcdf.csproj' # without filter it will timoeout in azure AFTER 60+ min testFilter: 'Name!=Test_FIX_BUG_GH_14&Name!=Test_FIX_BUG_GH_15' @@ -24,6 +25,11 @@ steps: displayName: 'dotnet build $(buildConfiguration)' - script: dotnet test -f $(appFramework) $(testsProject) --filter="$(testFilter)" --logger trx + displayName: 'OpenMcdf unit tests' + +- script: dotnet test $(extensionTestsProject) --logger trx + displayName: 'OpenMcdf.Extensions unit tests' + - task: PublishTestResults@2 condition: succeededOrFailed() inputs: