Skip to content

Commit

Permalink
maint: fix AppVeyor Coveralls reporting with patched version
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Jan 14, 2018
1 parent 0e971f1 commit 4d6d085
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,13 @@ install:
cpanm --notest --skip-installed Devel::Cover
($env:COVERAGE).split() | foreach {
# echo "cpanm --no-interactive --no-man-pages --notest --skip-satisfied Devel::Cover::Report::$_"
cpanm --no-interactive --no-man-pages --notest --skip-satisfied Devel::Cover::Report::$_
if ( $_ -ieq "Coveralls" ) {
## override for bugged default "Coveralls"; use patched version from personal github repo
cpanm --no-interactive --no-man-pages --notest --skip-satisfied https://github.com/rivy/perl.Devel-Cover-Report-Coveralls.git
}
else {
cpanm --no-interactive --no-man-pages --notest --skip-satisfied Devel::Cover::Report::$_
}
}
}
Expand Down

0 comments on commit 4d6d085

Please sign in to comment.