Skip to content

Commit

Permalink
Merge pull request #285 from iblis17/cov-report
Browse files Browse the repository at this point in the history
travis: bring coverage report back
  • Loading branch information
vchuravy committed Sep 24, 2017
2 parents d824631 + e3ad29d commit bbd0e66
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ addons:
- g++-4.8

before_install:
- export TRAVIS=test/travis
- source $TRAVIS/setup_env.sh
- export TRAVIS_DIR=test/travis
- source ${TRAVIS_DIR}/setup_env.sh

notifications:
email: false
Expand All @@ -38,11 +38,10 @@ script:
# bump the time limit of no ouput
# the `travis_wait` wrapper can be removed once this issue fixed:
# https://github.com/JuliaLang/julia/pull/23601
- travis_wait 60 $TRAVIS/run_test.sh
- travis_wait 60 ${TRAVIS_DIR}/run_test.sh

after_success:
- source $TRAVIS/run_coverage.sh
- source ${TRAVIS_DIR}/run_coverage.sh
- echo $TRAVIS_JULIA_VERSION
- julia -e 'Pkg.add("Documenter")'
- julia -e 'cd(Pkg.dir("MXNet")); include(joinpath("docs", "make.jl"))'

0 comments on commit bbd0e66

Please sign in to comment.