Skip to content

Commit 4a054b3

Browse files
committed
Checksum Cleanup - Missed Bits
* Updated to NUnit v3.2.1, neglected to update .travis.yml * Modified ZipTests.cs to catch exception thrown by checksum * Added checksum tests to list of passing tests * Modified SharpZipBaseException to inherit from Exception instead of ApplicationException
1 parent 3615be2 commit 4a054b3

6 files changed

Lines changed: 189 additions & 168 deletions

File tree

.travis.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,22 @@ os:
77
solution: ICSharpCode.SharpZipLib.sln
88
install:
99
- nuget restore ICSharpCode.SharpZipLib.sln
10-
# - nuget install NUnit.ConsoleRunner -Version 3.2.0 -OutputDirectory testrunner
1110
script:
1211
- xbuild /p:Configuration=Debug ICSharpCode.SharpZipLib.sln
1312
- xbuild /p:Configuration=Release ICSharpCode.SharpZipLib.sln
14-
- mono ./packages/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe --framework=mono-4.0 --labels=All --testlist=./ICSharpCode.SharpZipLib.Tests/PassingTests.txt --result=./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
13+
- mono ./packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe --framework=mono-4.0 --labels=All --testlist=./ICSharpCode.SharpZipLib.Tests/PassingTests.txt --result=./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
14+
after_script:
15+
- nuget pack Build/ICSharpCode.SharpZipLib.nuspec -BasePath Build -OutputDirectory bin/Release
16+
cache:
17+
directories:
18+
- bin
19+
- Documentation
20+
#deploy:
21+
# provider: releases
22+
# api_key: "GITHUB OAUTH TOKEN"
23+
# file:
24+
# - "bin/Release/ICSharpCode.SharpZipLib.nupkg"
25+
# - "Documentation/nunit3-test-results-travis.xml"
26+
# skip_cleanup: true
27+
# on:
28+
# tags: true

0 commit comments

Comments
 (0)