From f10fd2dab6f2d84a6342d22e1c3d405e0cdafcc1 Mon Sep 17 00:00:00 2001 From: Michiel Beijen Date: Thu, 3 Oct 2013 16:35:16 +0200 Subject: [PATCH] Change environment variables for extended tests. 'Lancaster' specifies this should be 'EXTENDED_TESTING'. See https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md Thanks to Leon Timmermans for the suggestion! --- .travis.yml | 2 +- t/60leaks.t | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 73302440..f70ced95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,5 +14,5 @@ before_script: - mysql -e 'create database myapp_test;' install: - cpanm Test::Deep DBI -env: SLOW_TESTS=1 +env: EXTENDED_TESTING=1 script: "perl Makefile.PL --testuser=travis --testdb myapp_test && make && make test" diff --git a/t/60leaks.t b/t/60leaks.t index e6960701..375b5ee5 100644 --- a/t/60leaks.t +++ b/t/60leaks.t @@ -19,8 +19,8 @@ my $COUNT_PREPARE = 10000; # Number of prepare/execute/finish iterations my $have_storable; -if (!$ENV{SLOW_TESTS}) { - plan skip_all => "Skip \$ENV{SLOW_TESTS} is not set\n"; +if (!$ENV{EXTENDED_TESTING}) { + plan skip_all => "Skip \$ENV{EXTENDED_TESTING} is not set\n"; } eval { require Proc::ProcessTable; };