Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move author tests into xt #9

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
perl-version: ['5.10', '5.14', '5.16', '5.20', '5.26']
perl-version: ['5.16', '5.20', '5.26']
include:
- perl-version: '5.30'
os: ubuntu-latest
Expand All @@ -43,6 +43,8 @@ jobs:
perl-version: ${{ matrix.perl-version }}
- name: Install PDL dependencies
uses: PDLPorters/devops/github-actions/install-dep-pdl-dep@master
- name: Install LAPACK
uses: PDLPorters/devops/github-actions/install-dep-lapack@master
- name: 'ci-dist: target-all'
uses: PDLPorters/devops/github-actions/ci-dist@master
with:
Expand Down
19 changes: 7 additions & 12 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
Changes
lib/PDL/IO/MDIF.pm
lib/PDL/IO/Touchstone.pm
LICENSE
MANIFEST
Makefile.PL
MANIFEST This list of files
README
README.md
lib/PDL/IO/MDIF.pm
lib/PDL/IO/Touchstone.pm
t/00-load.t
t/01-snp-tests.t
t/02-snp-read.t
t/03-read-test-data.t
Expand All @@ -18,15 +17,10 @@ t/100-mdif-rewrite.t
t/11-m_interpolate.t
t/12-m_interpolate-range.t
t/20-y_calcs.t
t/manifest.t
t/pod-coverage.t
t/pod.t
t/test-data/IDEAL_OPEN.s2p
t/test-data/IDEAL_SHORT.s2p
t/test-data/cha3024-99f-lna.s2p
t/test-data/hmc1118.s3p
t/test-data/muRata/LICENSE.muRata
t/test-data/muRata/README
t/test-data/IDEAL_OPEN.s2p
t/test-data/IDEAL_SHORT.s2p
t/test-data/muRata/cap-muRata-GRM1555CYA103GE01_10nF_35v.s2p
t/test-data/muRata/cap-muRata-GRM155R61C105KA12_1uF_16v.s2p
t/test-data/muRata/ferrite-muRata-BLM15BD182SN1_0402_1800Z_100MHz.s2p
Expand All @@ -36,5 +30,6 @@ t/test-data/muRata/ind-choke-muRata-LQW15CA2R0K00.s2p
t/test-data/muRata/ind-choke-muRata-LQW15DN150M00.s2p
t/test-data/muRata/ind-muRata-LQW15AN3N8C10.s2p
t/test-data/muRata/ind-muRata-LQW15AN9N9G00.s2p
t/test-data/muRata/LICENSE.muRata
t/test-data/muRata/muRata-GQM-0402.mdf
xt/boilerplate.t
t/test-data/muRata/README
46 changes: 44 additions & 2 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -1,7 +1,49 @@
^.*\.sh$
^\.gitignore
^\.github
^\.git
^ignore\.txt
^MANIFEST\.SKIP
^ignoredeps
^xt/
^Makefile(\.(aperl|old))?$
^(MY)?META
\.sw.$
\.DS_Store
%$
-stamp$
.*/TAGS$
.*Version_check$
.*\#$
.*\.0$
.*\.orig$
.*\.rej$
/\.\#.*
\bpm_to_blib$
MANIFEST\.bak$
MANIFEST\.old
\.(tmp|new|diff|ori)$
\.BAK$
\.bck$
\.bs
\.bundle$
\.lck$
\.m$
\.o$
\.out$
\.patch$
\.so$
\.tar\.gz$
\b_eumm/

^\.\#.*
^\.git
\.gitignore$
^blib/
~$
^xt/

^\.cirrus\.yml

cover_db/
^nytprof(/|\.out)
\.gc(ov|no|da)$
pp-\w*\.c$
13 changes: 0 additions & 13 deletions t/00-load.t

This file was deleted.

15 changes: 0 additions & 15 deletions t/manifest.t

This file was deleted.

12 changes: 12 additions & 0 deletions xt/manifest.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
use strict;
use warnings;
use Test::More;
use ExtUtils::Manifest;

unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
plan tests => 2;

is_deeply [ ExtUtils::Manifest::manicheck() ], [], 'missing';
is_deeply [ ExtUtils::Manifest::filecheck() ], [], 'extra';
File renamed without changes.
File renamed without changes.
Loading