Skip to content

Commit

Permalink
Try to get code coverage in the correct file.
Browse files Browse the repository at this point in the history
  • Loading branch information
squid-box committed Jun 8, 2019
1 parent 20380b1 commit 2f49afc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ after_build:
- cmd: nuget pack package.nuspec -version "%APPVEYOR_BUILD_VERSION%"

after_test:
- cmd: dotnet test SevenZip.Tests\SevenZip.Tests.csproj /p:CollectCoverage=true --no-build --configuration Release /p:CoverletOutput="%APPVEYOR_BUILD_FOLDER%\coverage.xml" /p:CoverletOutputFormat=opencover
- ps: Invoke-Expression ($env:USERPROFILE + '\.nuget\packages\coveralls.io.\1.4.2\tools\coveralls.net.exe --opencover "%APPVEYOR_BUILD_FOLDER%\coverage.xml" -r %COVERALLS_REPO_TOKEN%')
- cmd: dotnet test SevenZip.Tests\SevenZip.Tests.csproj /p:CollectCoverage=true --no-build --configuration Release /p:CoverletOutput="%APPVEYOR_BUILD_FOLDER%/coverage.xml" /p:CoverletOutputFormat=opencover
- ps: Invoke-Expression ($env:USERPROFILE + '\.nuget\packages\coveralls.io.\1.4.2\tools\coveralls.net.exe --opencover "' + $env:APPVEYOR_BUILD_FOLDER + '\coverage.xml" -r %COVERALLS_REPO_TOKEN%')

artifacts:
- path: 'Squid-Box.SevenZip*.nupkg'
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ This is a fork from [tomap's fork](https://github.com/tomap/SevenZipSharp) of th
## Changes from original project
As required by the GNU GPL 3.0 license, here's a rough list of what has changed since the original CodePlex project, including changes made in tomap's fork.

* Target .NET framework changed from 2.0 to .Net Standard 2.0 (ie. .Net Framework 4.6.1+, .Net Core 2.0+, Mono 5.4+, UWP 10.0.16299+, Unity 2018.1+).
* Produces a NuGet package.
* Target .NET framework changed from 2.0 to both .NET 4.5 and .NET Standard 2.0 (ie. .NET Framework 4.5+, .Net Core 2.0+, Mono 5.4+, UWP 10.0.16299+, Unity 2018.1+).
* Produces a multi-framework NuGet package.
* Continous Integration added, both building and deploying, and code test coverage.
* Tests re-written to NUnit 3 test cases.
* General code cleanup.
Expand Down

0 comments on commit 2f49afc

Please sign in to comment.