Skip to content

Commit

Permalink
wip: fix travis after new registry system.
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Korsbo committed Jul 5, 2019
1 parent 644e1c5 commit 0cc9e1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ notifications:
# uncomment the following lines to override the default test script
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.test("Latexify"; coverage=true)'
- julia --project -e 'using Pkg; Pkg.test("Latexify"; coverage=true)'
after_success:
# push coverage results to Coveralls and Codecov
- julia -e 'using Pkg; import Latexify; cd(joinpath(dirname(pathof(Latexify)), "..")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps), import Latexify;
cd(dirname(pathof(Latexify))); include(joinpath("..", "docs", "make.jl"))'
- julia --project -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
- julia --project -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps), import Latexify;
include(joinpath("..", "docs", "make.jl"))'

0 comments on commit 0cc9e1d

Please sign in to comment.