Skip to content

Commit

Permalink
Fix appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mganss committed Feb 5, 2016
1 parent 2b594a3 commit d0a347a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ build:
test_script:
- nuget.exe install OpenCover -ExcludeVersion
- nuget.exe install NUnit.Runners -ExcludeVersion
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"NUnit.Runners\tools\nunit-console.exe" "-targetargs:/noshadow /domain:single HtmlSanitizer.Tests\bin\release\HtmlSanitizer.Tests.dll" -returntargetcode -hideskipped:All -output:coverage.xml
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"NUnit.Console\tools\nunit3-console.exe" "-targetargs:/noshadow /domain:single HtmlSanitizer.Tests\bin\release\HtmlSanitizer.Tests.dll" -returntargetcode -hideskipped:All -output:coverage.xml
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "coverage.xml"

2 comments on commit d0a347a

@304NotModified
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mganss PS I got it working with -noshadow for NUnit, see https://github.com/NLog/NLog.Elmah/blob/master/appveyor.yml

@mganss
Copy link
Owner Author

@mganss mganss commented on d0a347a Feb 5, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NUnit3 has noshadow by default: nunit/nunit#521

Please sign in to comment.