Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion build/template-test-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ steps:
displayName: 'Run unit tests'
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: 'tests\Microsoft.Identity.Web.Test\bin\**\Microsoft.Identity.Web.Test.dll'
testAssemblyVer2: |
tests\Microsoft.Identity.Web.Test\bin\**\Microsoft.Identity.Web.Test.dll
tests\Microsoft.Identity.Web.UI.Test\bin\**\Microsoft.Identity.Web.UI.Test.dll
tests\E2E Tests\Sidecar.Tests\bin\**\Sidecar.Tests.dll
tests\E2E Tests\OidcIdPSignedAssertionProviderTests\bin\**\OidcIdpSignedAssertionProviderTests.dll
tests\E2E Tests\CustomSignedAssertionProviderTests\bin\**\CustomSignedAssertionProviderTests.dll
searchFolder: '$(System.DefaultWorkingDirectory)'
# Match the GitHub Action: Sidecar.Tests ships E2E/integration classes that
# need a live sidecar and are excluded there. Skip the same ones here.
testFiltercriteria: 'FullyQualifiedName!~SidecarEndpointsE2ETests&FullyQualifiedName!~SidecarIntegrationTests'
runInParallel: true
codeCoverageEnabled: true
failOnMinTestsNotRun: true
Expand Down
Loading