Skip to content

Commit 19ef3ef

Browse files
authored
Merge pull request #963 from mohawk2/travis-searchtests-enable
Re-enable search tests on Travis
2 parents 3c41dcf + dbace49 commit 19ef3ef

File tree

4 files changed

+1
-13
lines changed

4 files changed

+1
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ before_script:
6262
- coverage-setup
6363

6464
script:
65-
- carton exec prove -It/lib -lr -j$(test-jobs) t
65+
- carton exec prove -lr -j$(test-jobs) t
6666

6767
after_success:
6868
- coverage-report

t/api/controller/search/first.t

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ use Test::More;
44
use Test::Mojo;
55
use Mojo::JSON qw(true false);
66

7-
plan skip_all =>
8-
"Travis ES bad, see https://travis-ci.org/metacpan/metacpan-api/jobs/301092129"
9-
if $ENV{TRAVIS};
10-
117
my $t = Test::Mojo->new('MetaCPAN::API');
128

139
$t->get_ok( '/v1/search/first', form => { q => 'Versions::PkgVar' } )

t/api/controller/search/web.t

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ use Mojo::JSON qw(true false);
77
# Note: we need a release marked as status => latest
88
# so we're using Versions::PkgVar for now
99
# perhaps it should be smarter later and find one to try?
10-
#
11-
plan skip_all =>
12-
"Travis ES bad, see https://travis-ci.org/metacpan/metacpan-api/jobs/301092129"
13-
if $ENV{TRAVIS};
1410

1511
my $t = Test::Mojo->new('MetaCPAN::API');
1612

t/model/search.t

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ use Test::More;
88
use Test::Deep qw(cmp_deeply ignore);
99
use Cpanel::JSON::XS ();
1010

11-
plan skip_all =>
12-
"Travis ES bad, see https://travis-ci.org/metacpan/metacpan-api/jobs/301092129"
13-
if $ENV{TRAVIS};
14-
1511
# Just use this to get an es object.
1612
my $server = MetaCPAN::TestServer->new;
1713
my $search = MetaCPAN::Model::Search->new(

0 commit comments

Comments
 (0)