Skip to content
Snippets Groups Projects
Commit 9020305e authored by Matthew Laird's avatar Matthew Laird
Browse files

unset PERL5OPT before coveralls is run

parent 36aaf715
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ done
if [ ${#PERL5OPT_array[@]} -ne 0 ]; then
PERL5OPT=$(join_array ' ' ${PERL5OPT_array[@]})
export PERL5OPT
# export PERL5OPT
echo "Using PERL5OPT=$PERL5OPT"
fi
......@@ -61,6 +61,7 @@ PERL5OPT=$PERL5OPT perl $ENSDIR/ensembl-test/scripts/runtests.pl modules/t $SKIP
rt=$?
if [ $rt -eq 0 ]; then
if [ "$COVERALLS" = 'true' ]; then
unset PERL5OPT
echo "Running Devel::Cover coveralls report"
cover --nosummary -report coveralls
fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment