Skip to content

Commit

Permalink
No longer uses dotnet-xunit to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrichards committed Sep 3, 2018
1 parent 6e477da commit 9b60bca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Build.ps1
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions test/DbfDataReader.Tests/DbfDataReader.Tests.csproj
Expand Up @@ -15,10 +15,9 @@

<ItemGroup>
<PackageReference Include="xunit" Version="2.3.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="CsvHelper" Version="3.2.0" />
<PackageReference Include="Shouldly" Version="3.0.0-beta0003" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 9b60bca

Please sign in to comment.