Skip to content

Commit

Permalink
Use --color=yes in Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Jul 20, 2018
1 parent a415049 commit 2e087e5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ notifications:
sudo: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'using Pkg; Pkg.build("ForwardDiff"); Pkg.test("ForwardDiff"; coverage=true)';
- julia -O3 -e 'include("test/SIMDTest.jl")';
- julia --color=yes -e 'using Pkg; Pkg.build("ForwardDiff"); Pkg.test("ForwardDiff"; coverage=true)';
- julia --color=yes -O3 -e 'include("test/SIMDTest.jl")';
after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'using Pkg; Pkg.add("Documenter")'
- julia -e 'include("docs/make.jl")'
- julia --color=yes -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia --color=yes -e 'using Pkg; Pkg.add("Documenter")'
- julia --color=yes -e 'include("docs/make.jl")'

0 comments on commit 2e087e5

Please sign in to comment.