Skip to content

Commit 8235d03

Browse files
committed
Run the OpenMcdf.Extensions unit tests in CI builds
1 parent 4b56b5e commit 8235d03

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

azure-pipelines.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ variables:
1515
appFramework: 'net6.0'
1616
# pay attention to slashes
1717
testsProject: 'sources/Test/OpenMcdf.Test/OpenMcdf.Test.csproj'
18+
extensionTestsProject: 'sources/Test/OpenMcdf.Extensions.Test/OpenMcdf.Extensions.Test.csproj'
1819
buildProject: 'sources/OpenMcdf/OpenMcdf.csproj'
1920
# without filter it will timoeout in azure AFTER 60+ min
2021
testFilter: 'Name!=Test_FIX_BUG_GH_14&Name!=Test_FIX_BUG_GH_15'
@@ -24,6 +25,11 @@ steps:
2425
displayName: 'dotnet build $(buildConfiguration)'
2526

2627
- script: dotnet test -f $(appFramework) $(testsProject) --filter="$(testFilter)" --logger trx
28+
displayName: 'OpenMcdf unit tests'
29+
30+
- script: dotnet test $(extensionTestsProject) --logger trx
31+
displayName: 'OpenMcdf.Extensions unit tests'
32+
2733
- task: PublishTestResults@2
2834
condition: succeededOrFailed()
2935
inputs:

0 commit comments

Comments
 (0)