Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Try fixing powershell
  • Loading branch information
xoofx committed May 3, 2017
1 parent 8227401 commit 72e569e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appveyor.yml
Expand Up @@ -45,7 +45,8 @@ after_test:
nuget install -OutputDirectory "$env:APPVEYOR_BUILD_FOLDER\tools" OpenCover -version 4.6.519
nuget install -OutputDirectory "$env:APPVEYOR_BUILD_FOLDER\tools" coveralls.net -version 0.8.0-beta0001
..\..\tools\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -returntargetcode -target:"dotnet.exe" -targetdir:"$env:APPVEYOR_BUILD_FOLDER\src\Zio.Tests" -targetargs:"xunit -configuration Release -parallel none -serialize -maxthreads 1 -verbose" -filter:"+[Zio*]*-[Zio.Tests*]*" -output:"./coverage.xml" -mergeoutput -oldstyle
if ($? -and Test-Path "./coverage.xml") {
$has_result = Test-Path "./coverage.xml"
if ($? -and $has_result) {
..\..\tools\coveralls.net.0.8.0-beta0001\tools\csmacnz.Coveralls.exe --opencover --repoToken $env:COVERALLS_REPO_TOKEN --basePath "$env:APPVEYOR_BUILD_FOLDER" -i "./coverage.xml" --useRelativePath --commitId $env:APPVEYOR_REPO_COMMIT --commitBranch $env:APPVEYOR_REPO_BRANCH --commitAuthor $env:APPVEYOR_REPO_COMMIT_AUTHOR --commitEmail $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL --commitMessage $env:APPVEYOR_REPO_COMMIT_MESSAGE --jobId $env:APPVEYOR_BUILD_NUMBER --serviceName appveyor
}
}
Expand Down

0 comments on commit 72e569e

Please sign in to comment.