Skip to content

Commit

Permalink
fix: test-results.xml files not found due to invalid arg
Browse files Browse the repository at this point in the history
  • Loading branch information
skwasjer committed Jul 24, 2019
1 parent dc89c1f commit b9914c4
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 @@ test_script:
- OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test -c Debug -l:trx;LogFileName=test-results.xml" -output:coverage.xml -register:user -filter:"+[IbanNet*]* -[*Tests]*" -oldStyle
- codecov -f coverage.xml
on_finish:
- sh: find "$APPVEYOR_BUILD_FOLDER" -type f -name '*/test-results.xml' -print0 | xargs -0 -I '{}' curl -F 'file=@{}' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID"
- sh: find "$APPVEYOR_BUILD_FOLDER" -type f -name 'test-results.xml' -print0 | xargs -0 -I '{}' curl -F 'file=@{}' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID"
deploy:
- provider: NuGet
api_key:
Expand Down

0 comments on commit b9914c4

Please sign in to comment.