Skip to content

Commit afd149b

Browse files
committed
NUnit3 Command Line Options
* Changed from /X to --X * /runlist is now --testlist
1 parent 1c0242a commit afd149b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ install:
1111
script:
1212
- xbuild /p:Configuration=Debug ICSharpCode.SharpZipLib.sln
1313
- xbuild /p:Configuration=Release ICSharpCode.SharpZipLib.sln
14-
- mono ./packages/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe /framework:mono-4.0 /runlist:./ICSharpCode.SharpZipLib.Tests/PassingTests.txt /result:./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
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;format=nunit3 ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ after_test:
157157

158158
# to run your custom scripts instead of automatic tests
159159
test_script:
160-
- cmd: nunit3-console /framework:net-4.5 /runlist:./ICSharpCode.SharpZipLib.Tests/PassingTests.txt /result:./Documentation/nunit3-test-results-appveyor.xml;format=AppVeyor ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
160+
- cmd: nunit3-console --framework=net-4.5 --labels=All --testlist=./ICSharpCode.SharpZipLib.Tests/PassingTests.txt --result=./Documentation/nunit3-test-results-appveyor.xml;format=AppVeyor ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
161161

162162
# to disable automatic tests
163163
#test: off

0 commit comments

Comments
 (0)