@@ -, +, @@ --- t/00-testcritic.t | 7 ------- xt/find-nonutf8 | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) --- a/t/00-testcritic.t +++ a/t/00-testcritic.t @@ -1,18 +1,11 @@ #!/usr/bin/env perl # This script can be used to run perlcritic on perl files in koha -# The script is purely optional requiring Test::Perl::Critic to be installed -# and the environment variable TEST_QA to be set use Modern::Perl; use Test::More; use English qw(-no_match_vars); -if ( not $ENV{TEST_QA} ) { - my $msg = 'Author test. Set $ENV{TEST_QA} to a true value to run'; - plan( skip_all => $msg ); -} - eval { require Test::Perl::Critic; }; if ( $EVAL_ERROR ) { --- a/xt/find-nonutf8 +++ a/xt/find-nonutf8 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/perl # # Find Koha source files that are not in UTF-8. Non-textual files are ignored. # This script requires the isutf8 program from Joey Hess's moreutils package. --