File tree Expand file tree Collapse file tree 6 files changed +16
-4
lines changed Expand file tree Collapse file tree 6 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl distribution Win32-Mechanize-NotepadPlusPlus
2
2
3
+ v0.006001 2021-Nov-25
4
+ - Update test suite again for FreeBSD: doesn't need to cover
5
+ "STL-unpatched.t" (#13)
6
+ - Fix MANIFEST.SKIP to not bundle the .github folder in the
7
+ distribution
8
+
9
+
3
10
v0.006 2021-Nov-25
4
11
- Try to prevent FreeBSD from freezing during test suite: skip
5
12
offending tests which cover FormatSTL.pm, as that module
Original file line number Diff line number Diff line change 1
- .github/workflows/perl-ci.yml
2
1
CHANGES
3
2
files/cube.stl
4
3
files/cube_badfacet.stl
Original file line number Diff line number Diff line change 13
13
14
14
# pcj
15
15
^.svn/
16
+ ^.github/
16
17
^MYMETA
17
18
^\.?travis\.yml$
18
19
^\.?appveyor\.yml$
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use Carp;
5
5
use 5.010; # M::V::R requires 5.010, so might as well make use of the defined-or // notation :-)
6
6
use Math::Vector::Real 0.18;
7
7
use CAD::Format::STL qw/ / ;
8
- our $VERSION = ' 0.006 ' ;
8
+ our $VERSION = ' 0.006001 ' ;
9
9
10
10
=head1 NAME
11
11
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use Carp;
5
5
use 5.010; # M::V::R requires 5.010, so might as well make use of the defined-or // notation :-)
6
6
use CAD::Format::STL qw/ / ;
7
7
use CAD::Mesh3D qw/ :create/ ;
8
- our $VERSION = ' 0.006 ' ; # auto-populated from CAD::Mesh3D
8
+ our $VERSION = ' 0.006001 ' ; # auto-populated from CAD::Mesh3D
9
9
10
10
# start by deciding which formatter to use
11
11
our $STL_FORMATTER ;
Original file line number Diff line number Diff line change @@ -7,8 +7,13 @@ use version 0.77;
7
7
use FindBin;
8
8
use lib " $FindBin::Bin /unpatched" ;
9
9
BEGIN {
10
- if ( $^O eq ' linux' ) { # want linux to pretend it is windows, to get full coverage of patched/unpatched
10
+ if ( $^O eq ' linux' ) {
11
+ # want linux to pretend it is windows, to get full coverage of patched/unpatched
12
+ # it will _work_ on linux, but isn't required
11
13
$ENV {CAD_MESH3D_OVERRIDE_OS } = ' MSWin32' ;
14
+ } elsif ( $^O ne ' MSWin32' and $^O ne ' cygwin' ) {
15
+ # if it's not windows and not linux, then we don't need this
16
+ plan skip_all => ' Unpatched test not needed except on Windows' ;
12
17
}
13
18
}
14
19
use CAD::Mesh3D::STL;
You can’t perform that action at this time.
0 commit comments