Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tynor88 committed Jan 2, 2016
1 parent 3217eb2 commit d700259
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions appveyor-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
version: 1.0.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
Expand All @@ -24,6 +26,19 @@ build:
verbosity: minimal
test:
assemblies: '**\*.Test.dll'
after_test:
- cmd: >-
mkdir reports
IF DEFINED %APPVEYOR_PULL_REQUEST_NUMBER% (
ECHO This is a PR build - not running Coveralls
) ELSE (
packages\OpenCover.4.6.166\tools\OpenCover.Console.exe -mergeoutput -register:user -excludebyattribute:*.ExcludeFromCodeCoverage*^ -target:"packages\NUnit.Console.3.0.1\tools\nunit3-console.exe" "-targetargs:\"Tests\Topshelf.FileSystemWatcher.Test\bin\Release\Topshelf.FileSystemWatcher.Test.dll\" \"Tests\Topshelf.SimpleInjector.Quartz.Test\bin\Release\Topshelf.SimpleInjector.Quartz.Test.dll\" \"Tests\Topshelf.SimpleInjector.Test\bin\Release\Topshelf.SimpleInjector.Test.dll\"" -filter:"+[*]Topshelf.SimpleInjector.* +[*]Topshelf.FileSystemWatcher.* -[*.Test]*" -output:"reports\OpenCoverCoverage.xml"
packages\coveralls.net.0.6.0\tools\csmacnz.Coveralls.exe --opencover -i reports\OpenCoverCoverage.xml --repoToken %COVERALLS_REPO_TOKEN% --commitBranch %APPVEYOR_REPO_BRANCH%)
artifacts:
- path: '*.nupkg'
deploy:
Expand Down

0 comments on commit d700259

Please sign in to comment.