Skip to content

Commit

Permalink
Ignore "Warning: using A: B" from julia 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Sep 17, 2018
1 parent 4c9b351 commit 970b876
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,15 @@ git:
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi

script:
- julia --color=yes --depwarn=error ci/test.jl
# Ignore "Warning: `using A: B`" from julia 0.7:
- if [ "$TRAVIS_JULIA_VERSION" = "0.7" ];
then
depwarn=yes;
else
depwarn=error;
fi
- echo "$depwarn"
- julia --color=yes --depwarn="$depwarn" ci/test.jl

after_success:
# push coverage results to Coveralls
Expand Down

0 comments on commit 970b876

Please sign in to comment.