File tree 2 files changed +14
-1
lines changed
lib/Module/CPANTS/Kwalitee
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
Changes - Revision history for Module-CPANTS-Analyse
6
6
7
+ =head2 0.88 (QA Hackathon 2013)
8
+
9
+ =over
10
+
11
+ =item numerous fixes for a smoother operation of www-cpants
12
+ (L<charsbar|https://metacpan.org/author/ishigaki>)
13
+
14
+ =back
15
+
7
16
=head2 0.87 2013-02-12
8
17
9
18
=over
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ sub analyse {
21
21
my $distdir =$me -> distdir;
22
22
my $modules =$me -> d-> {modules };
23
23
my $files =$me -> d-> {files_array };
24
- my @tests =grep {m |^x?t\b.*\.t|} @$files ;
24
+
25
+ # NOTE: all files in xt/ should be ignored because they are
26
+ # for authors only and their dependencies may not be (and
27
+ # often are not) listed in meta files.
28
+ my @tests =grep {m |^t\b.*\.t|} @$files ;
25
29
$me -> d-> {test_files } = \@tests ;
26
30
27
31
my %skip =map {$_ -> {module }=> 1 } @$modules ;
You can’t perform that action at this time.
0 commit comments