Przeglądaj źródła

Handle non-windows CPANTesters fails

George S. Baugh 10 lat temu
rodzic
commit
70e5447a5e
3 zmienionych plików z 6 dodań i 1 usunięć
  1. 4 0
      Changes
  2. 1 0
      dist.ini
  3. 1 1
      lib/TestRail/Utils.pm

+ 4 - 0
Changes

@@ -2,6 +2,10 @@ Revision history for Perl module TestRail::API
 
 0.030 2015-07-31 TEODESIAN
     - Fix testrail-tests, was calling function in incorrect namespace
+    - Fix testrail-bulk-mark-results, was not including library
+    - Re-instate integration tests for binaries that were removed in 0.029
+    - Require more up-to-date Pod::Perldoc for help that works on old unices/perls
+    - Fix windows issue with TestRail::Find
 
 0.029 2015-07-30 TEODESIAN
     - Add bulkAddResults function to TestRail::API

+ 1 - 0
dist.ini

@@ -121,6 +121,7 @@ stopwords = milesort
 stopwords = findRuns
 stopwords = findTests
 stopwords = assignee
+stopwords = parseConfig
 
 [PkgVersion]
 [AutoPrereqs]

+ 1 - 1
lib/TestRail/Utils.pm

@@ -7,7 +7,7 @@ use strict;
 use warnings;
 
 use Carp qw{confess cluck};
-use Pod::Perldoc 3.10;
+use Pod::Perldoc 3.20; #Make sure we have ToMan on some unices
 
 use IO::Interactive::Tiny ();
 use Term::ANSIColor 2.01 qw(colorstrip);