Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
Bump xunit.runner.console from 2.4.1 to 2.4.2 (#619)
Browse files Browse the repository at this point in the history
* Bump xunit.runner.console from 2.4.1 to 2.4.2

Bumps [xunit.runner.console](https://github.com/xunit/xunit) from 2.4.1 to 2.4.2.
- [Release notes](https://github.com/xunit/xunit/releases)
- [Commits](xunit/xunit@2.4.1...2.4.2)

---
updated-dependencies:
- dependency-name: xunit.runner.console
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix path reference

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Arnott <andrew.arnott@microsoft.com>
  • Loading branch information
dependabot[bot] and AArnott committed Oct 31, 2022
1 parent 6b8a91e commit 92349c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ if ($Test -and $PSCmdlet.ShouldProcess('Test assemblies')) {
}

Write-Host "Testing x86..." -ForegroundColor Yellow
$xunitRunner = Join-Path $PackageRestoreRoot 'xunit.runner.console/2.4.1/tools/net472/xunit.console.x86.exe'
$xunitRunner = Join-Path $PackageRestoreRoot 'xunit.runner.console/2.4.2/tools/net472/xunit.console.x86.exe'
& $xunitRunner $xunitArgs
if ($LASTEXITCODE -ne 0) {
Write-Error "x86 test run returned exit code $LASTEXITCODE"
$testsFailed = $true
}

Write-Host "Testing x64..." -ForegroundColor Yellow
$xunitRunner = Join-Path $PackageRestoreRoot 'xunit.runner.console/2.4.1/tools/net472/xunit.console.exe'
$xunitRunner = Join-Path $PackageRestoreRoot 'xunit.runner.console/2.4.2/tools/net472/xunit.console.exe'
& $xunitRunner $xunitArgs
if ($LASTEXITCODE -ne 0) {
Write-Error "x64 test run returned exit code $LASTEXITCODE"
Expand Down
2 changes: 1 addition & 1 deletion test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="xunit.runner.console" Version="2.4.1" />
<PackageReference Include="xunit.runner.console" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="xunit" Version="2.4.1" />
</ItemGroup>
Expand Down

0 comments on commit 92349c6

Please sign in to comment.