Skip to content

Commit

Permalink
Merge pull request #33 from JSkimming/dependabot/nuget/coverlet.msbui…
Browse files Browse the repository at this point in the history
…ld-2.6.0

Bump coverlet.msbuild from 2.0.1 to 2.6.0
  • Loading branch information
JSkimming authored May 1, 2019
2 parents d45e4dc + 745abf3 commit 9b694f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ orbs:
command: dotnet build --no-restore -f << parameters.framework >> -c << parameters.build-config >> ./test/Tesla.NET.Tests/Tesla.NET.Tests.csproj
- run:
name: Test
command: dotnet test --no-restore --no-build -f << parameters.framework >> -c << parameters.build-config >> ./test/Tesla.NET.Tests/Tesla.NET.Tests.csproj /p:CollectCoverage=true
command: dotnet test --no-restore --no-build -f << parameters.framework >> -c << parameters.build-config >> ./test/Tesla.NET.Tests/Tesla.NET.Tests.csproj /p:CollectCoverage=true /p:Include="[Tesla.NET]*" /p:Exclude="[*.Tests]*"
- store_artifacts:
path: ./test/Tesla.NET.Tests/coverage.json
destination: coverage.json
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ branches:
- master

script:
- dotnet test -c Release -f netcoreapp2.1 test/Tesla.NET.Tests/Tesla.NET.Tests.csproj /p:CollectCoverage=true
- dotnet test -c Release -f netcoreapp2.1 test/Tesla.NET.Tests/Tesla.NET.Tests.csproj /p:CollectCoverage=true /p:Include="[Tesla.NET]*" /p:Exclude="[*.Tests]*"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ COPY . .
RUN dotnet build --no-restore -f netcoreapp2.1 -c Debug ./test/Tesla.NET.Tests/Tesla.NET.Tests.csproj

# Run unit tests.
RUN dotnet test --no-restore --no-build -c Debug -f netcoreapp2.1 test/Tesla.NET.Tests/Tesla.NET.Tests.csproj /p:CollectCoverage=true
RUN dotnet test --no-restore --no-build -c Debug -f netcoreapp2.1 test/Tesla.NET.Tests/Tesla.NET.Tests.csproj /p:CollectCoverage=true /p:Include="[Tesla.NET*]*" /p:Exclude="[*.Tests]*"
2 changes: 1 addition & 1 deletion test/Tesla.NET.Tests/Tesla.NET.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageReference Include="AutoFixture.SeedExtensions" Version="4.8.0" />
<PackageReference Include="AutoFixture.Xunit2" Version="4.8.0" />
<PackageReference Include="AutoTest.ArgumentNullException.Xunit" Version="0.9.0" />
<PackageReference Include="coverlet.msbuild" Version="2.0.1" />
<PackageReference Include="coverlet.msbuild" Version="2.6.0" />
<PackageReference Include="FluentAssertions" Version="5.6.0" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
Expand Down

0 comments on commit 9b694f5

Please sign in to comment.