Skip to content

Commit

Permalink
noreports fix and range updates
Browse files Browse the repository at this point in the history
  • Loading branch information
barbie committed Jul 9, 2011
1 parent 84efc5f commit 8c9c430
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
24 changes: 21 additions & 3 deletions examples/example-settings.ini
Expand Up @@ -54,10 +54,28 @@ HERE
LIST=<<HERE
199901-200412
200301-200712
200601-200912
200901-201212
200601-201012
201001-201312
HERE

[TEST_RANGES]
LIST=<<HERE
199901-200412
200301-200712
200601-201012
201001-201106
HERE

[CPAN_RANGES]
LIST=<<HERE
199501-199812
199901-200412
200301-200712
200601-201012
201001-201106
HERE



; List of Distributions to ignore the No Reports list

Expand All @@ -68,7 +86,7 @@ sqlperl # special perl binary release
perl[-_].* # special perl binary release
perl542b # special perl binary release
dbgui.* # application
.*\.(pl|gz|tar|pm)) # source/package files
.*\.(pl|gz|tar|pm) # source/package files
.*-bin-.* # binary release
-withoutworldwriteables # broken name parser
manish-total-scripts # ?
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Testers/WWW/Statistics.pm
Expand Up @@ -112,7 +112,7 @@ sub new {
$self->osnames( \%OSNAMES );

my $ra = Regexp::Assemble->new();
my @NOREPORTS = split("\n", $cfg->val('NOREPORTS','LIST'));
my @NOREPORTS = split("\n", $cfg->val('NOREPORTS','list'));
for(@NOREPORTS) {
s/\s+\#.*$//; #remove comments
$ra->add($_);
Expand Down

0 comments on commit 8c9c430

Please sign in to comment.