Skip to content

Commit

Permalink
Use travis_wait for main tests as well
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Aug 9, 2018
1 parent d9fa143 commit 35ebe8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ script:
- if [ "$CI_GROUP" = docs ]; then
travis_wait 60 julia --color=yes docs/build.jl;
else
julia --color=yes --check-bounds=yes -e 'Pkg.test("Bifurcations"; coverage=true)';
travis_wait 60 julia --color=yes --check-bounds=yes ci/test.jl;
fi
# Not sure how to inline Julia code when travis_wait does this:
# https://github.com/travis-ci/travis-build/blob/da180aad961ad38b357307f0f9814ae2d36ee475/lib/travis/build/templates/header.sh#L218

after_success:
# push coverage results to Coveralls
Expand Down
1 change: 1 addition & 0 deletions ci/test.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pkg.test("Bifurcations"; coverage=true)

0 comments on commit 35ebe8a

Please sign in to comment.