Skip to content

Commit

Permalink
skip sword test on centos due to known issue.(issue may not be eprint…
Browse files Browse the repository at this point in the history
…s related). More info: eprints/eprints#370
  • Loading branch information
Jiadi Yao committed Dec 17, 2015
1 parent 8456b1d commit 35ee27c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/84_sword.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@
use strict;
use warnings;

use Test::More tests => 27;
use Test::More;

if (-e "/etc/centos-release")
{
plan skip_all => 'Known issue on centos 6.5+: https://github.com/eprints/eprints/issues/370 '
}
else
{
plan tests => 27;
}
use EPrints;
use EPrints::Test;

Expand Down

0 comments on commit 35ee27c

Please sign in to comment.