File: no-tests-on-clean

package info (click to toggle)
check-postgres 2.26.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,032 kB
  • sloc: perl: 12,710; sh: 19; makefile: 13
file content (15 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: prevent test cleanup on clean (this would need DBI in the Build-Depends)
Author: Christoph Berg <myon@debian.org>
Applied-Upstream: no, Debian-specific

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -93,7 +93,7 @@
 
 sub clean { ## no critic (RequireArgUnpacking)
     my $string = shift->SUPER::clean(@_);
-    $string =~ s{\t}{\tperl t/99_cleanup\.t\n\t};
+    #$string =~ s{\t}{\tperl t/99_cleanup\.t\n\t};
     $string .= qq{\nsignature_asc : \n};
     $string .= qq{\t@ gpg --yes -ba check_postgres.pl\n};
     $string .= qq{\t@ gpg --verify check_postgres.pl.asc\n};