From 9b60bca19234a2337cb78f98ed89433d09ba416e Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Mon, 3 Sep 2018 21:39:14 +0100 Subject: [PATCH] No longer uses dotnet-xunit to run tests --- Build.ps1 | 2 +- test/DbfDataReader.Tests/DbfDataReader.Tests.csproj | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Build.ps1 b/Build.ps1 index 53cceab..b528b2d 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -36,7 +36,7 @@ exec { & dotnet build DbfDataReader.sln -c Release --version-suffix=$buildSuffix Push-Location -Path .\test\DbfDataReader.Tests -exec { & dotnet xunit -configuration Release } +exec { & dotnet test --configuration Release } Pop-Location diff --git a/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj b/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj index b0a5d26..e59e2ea 100644 --- a/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj +++ b/test/DbfDataReader.Tests/DbfDataReader.Tests.csproj @@ -15,10 +15,9 @@ - + -