From d7319b3ca36d39efff0ae0c5dd44dd0e1e4970e9 Mon Sep 17 00:00:00 2001 From: vti Date: Wed, 9 Aug 2017 00:16:45 +0200 Subject: [PATCH] do not test deps --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 46ba96ca9..5be6555ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,11 +22,11 @@ before_install: - git config --global user.name "Perl Dancer dev team" install: #Safe fails to install due to failing tests since version 2.35 on perl < 5.14 - - perl -E 'exit($] < 5.014)' || cpanm --no-skip-satisfied Safe || cpanm --no-skip-satisfied --notest Safe || { cat ~/.cpanm/build.log ; false ; } + - perl -E 'exit($] < 5.014)' || cpanm -n --no-skip-satisfied Safe || cpanm --no-skip-satisfied --notest Safe || { cat ~/.cpanm/build.log ; false ; } #Moo fails to install without Class::Method::Modifiers since 2012/10/19 - - cpanm --no-skip-satisfied Class::Method::Modifiers YAML::XS || { cat ~/.cpanm/build.log ; false ; } - - dzil authordeps --missing | cpanm --no-skip-satisfied || { cat ~/.cpanm/build.log ; false ; } - - dzil listdeps --author --missing | cpanm --no-skip-satisfied || { cat ~/.cpanm/build.log ; false ; } + - cpanm -n --no-skip-satisfied Class::Method::Modifiers YAML::XS || { cat ~/.cpanm/build.log ; false ; } + - dzil authordeps --missing | cpanm -n --no-skip-satisfied || { cat ~/.cpanm/build.log ; false ; } + - dzil listdeps --author --missing | cpanm -n --no-skip-satisfied || { cat ~/.cpanm/build.log ; false ; } - cpanm -n Dist::Zilla::App::Command::cover # We do not need sudo. Setting this allows travis to use (Docker) containers on EC2