From c728a581f2a0d5ab9aec27c71c2daca368c6cdeb Mon Sep 17 00:00:00 2001 From: Andrew Yates <ayates@ebi.ac.uk> Date: Mon, 3 Jun 2013 10:33:17 +0000 Subject: [PATCH] making the gtf serialiser test run only if you are the test author --- modules/t/gtfSerialiser.t | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/t/gtfSerialiser.t b/modules/t/gtfSerialiser.t index 93980ec172..86088c0fcf 100644 --- a/modules/t/gtfSerialiser.t +++ b/modules/t/gtfSerialiser.t @@ -52,6 +52,11 @@ use Bio::EnsEMBL::Utils::IO qw/gz_work_with_file/; # iterate_lines use Bio::EnsEMBL::Utils::Exception; use Bio::EnsEMBL::Utils::IO::GTFSerializer; +if ( not $ENV{TEST_AUTHOR} ) { + my $msg = 'Author test. Set $ENV{TEST_AUTHOR} to a true value to run.'; + plan( skip_all => $msg ); +} + # my $current_release = software_version(); # my $last_release = $current_release - 1; my $release = 71; -- GitLab