Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pryrt committed Sep 24, 2017
1 parent 98d1346 commit 0134b07
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ perl:
- "5.14"
- "5.12"
- "5.10"
- "5.8"
- "5.6.2"

os:
- linux
Expand All @@ -26,29 +28,29 @@ before_install:
- cd $BUILD_DIR # $BUILD_DIR is set by the build-dist command

install:
- cpan-install Devel::Cover
- cpan-install Devel::Cover::Report::Coveralls
# - cpan-install Devel::Cover
# - cpan-install Devel::Cover::Report::Coveralls
- cpan-install --deps # installs prereqs, including recommends
- cpan-install --coverage # installs converage prereqs, if enabled

before_script:
- coverage-setup

script:
- PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine prove -lrv t
# - prove -lrv t
# - PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine prove -lrv t
- prove -lrv t
- prove -lrv xt
- cover
# - cover
# - cover -test #-coverage=default,-pod

after_success:
- cover -report coveralls
# - cover -report coveralls
- coverage-report

matrix:
include:
- perl: "5.24"
env: COVERAGE=1
allow_failures:
- perl: "5.8"
env: DEVEL_COVER_UNSUPPORTED=1
# allow_failures:
# - perl: "5.8"
# env: DEVEL_COVER_UNSUPPORTED=1

0 comments on commit 0134b07

Please sign in to comment.