Skip to content

Commit

Permalink
Merge a35b66a into babaa0e
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Apr 10, 2015
2 parents babaa0e + a35b66a commit df81ff8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Expand Up @@ -7,6 +7,8 @@ matrix:
env: COVERAGE=1
- perl: "5.20"
env: EUMM_BLEAD=1
- perl: "5.20"
env: TEST_INSTALLED=1 # test not from blib but after installing
- perl: "5.10"
- perl: "5.12"
- perl: "5.14"
Expand Down Expand Up @@ -57,14 +59,15 @@ before_install:
- cd $BUILD_DIR # $BUILD_DIR is set by the build-dist command
install:
- cpan-install --deps # installs prereqs, including recommends
- cpan-install --coverage # installs converage prereqs, if enabled
- cpan-install --coverage # installs coverage prereqs, if enabled
- prove t/00-report-prereqs.t t/01-checkmanifest.t
# SYSTEM_CORES set by travis-perl-helpers
- if [ "$SERIAL_BUILD" == 1 ]; then make; else make -j$(( $SYSTEM_CORES * 2 )); fi
before_script:
- coverage-setup
script:
- if [ "$SERIAL_TESTING" == 1 ]; then prove -b -v $(test-files); else prove --formatter TAP::Formatter::File -j$(test-jobs) -b -v $(test-files); fi
- export PROVE_FLAG=""; if [ "$TEST_INSTALLED" == 1 ]; then make install clean; else PROVE_FLAG="-b -v"; fi # clean is to ensure no blib
- if [ "$SERIAL_TESTING" == 1 ]; then prove $PROVE_FLAG $(test-files); else prove --formatter TAP::Formatter::File -j$(test-jobs) $PROVE_FLAG $(test-files); fi
after_script:
- perl -Iblib/lib -MPDL::Config -MData::Dumper -e 'print Dumper \%PDL::Config'
after_success:
Expand Down
3 changes: 1 addition & 2 deletions t/inline-comment-test.t
Expand Up @@ -5,9 +5,8 @@
# -- DCM, April 16, 2012

use strict;
use warnings;
use Test::More;
use blib; # otherwise possible error on virgin systems not finding PDL::Core

use PDL::LiteF;

# First some Inline administivia.
Expand Down
3 changes: 1 addition & 2 deletions t/inline-with.t
Expand Up @@ -2,9 +2,8 @@
# Also that the XS code in PDL::API works.

use strict;
use warnings;
use Test::More;
use blib; # otherwise possible error on virgin systems not finding PDL::Core

use PDL::LiteF;

my $inline_test_dir;
Expand Down
3 changes: 1 addition & 2 deletions t/inlinepdlpp.t
@@ -1,7 +1,6 @@
use strict;
use warnings;
use Test::More;
use blib; # otherwise possible error on virgin systems not finding PDL::Core

use PDL::LiteF;

BEGIN {
Expand Down

0 comments on commit df81ff8

Please sign in to comment.