Skip to content

Commit 399bcfd

Browse files
Copilotbaywet
andauthored
ci(azure): relax xunit mtp marker
Co-authored-by: baywet <7905502+baywet@users.noreply.github.com>
1 parent 94d87e0 commit 399bcfd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.azure-pipelines/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ extends:
107107
$testExecutables = @(Get-ChildItem -Path "$(Build.SourcesDirectory)\test" -Recurse -Filter "*.Tests.exe" | Where-Object {
108108
$_.Directory.Parent.Name -eq "$(BuildConfiguration)" -and
109109
$_.BaseName -eq $_.Directory.Parent.Parent.Parent.Name -and
110-
# xUnit v3 MTP test apps copy this runner assembly next to the generated executable.
111-
(Test-Path (Join-Path $_.DirectoryName "xunit.v3.mtp-v2.dll"))
110+
# xUnit v3 MTP test apps copy the runner assembly next to the generated executable.
111+
(Test-Path (Join-Path $_.DirectoryName "xunit.v3.mtp*.dll"))
112112
})
113113
if ($testExecutables.Count -eq 0) {
114114
Write-Error "No xUnit MTP test executable found"

0 commit comments

Comments
 (0)