Skip to content

Commit

Permalink
Merge pull request RexOps#434 from roa/skip_non_test_files
Browse files Browse the repository at this point in the history
only execute testfiles which end on '.t'
  • Loading branch information
Jan Gehring committed Sep 30, 2014
2 parents 1a45529 + ec0b23a commit d806ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Rex/Test.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ task run => make {

my @files;
LOCAL {
@files = list_files "t";
@files = grep { $_ =~ /\.t$/ } list_files 't';
};

for my $file (@files) {
Expand Down

0 comments on commit d806ecb

Please sign in to comment.