Skip to content

Commit 8550e49

Browse files
committed
Use --color=yes in Travis CI
1 parent 428fa55 commit 8550e49

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ notifications:
1010
sudo: false
1111
script:
1212
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13-
- julia -e 'using Pkg; Pkg.build("ForwardDiff"); Pkg.test("ForwardDiff"; coverage=true)';
14-
- julia -O3 -e 'include("test/SIMDTest.jl")';
13+
- julia --color=yes -e 'using Pkg; Pkg.build("ForwardDiff"); Pkg.test("ForwardDiff"; coverage=true)';
14+
- julia --color=yes -O3 -e 'include("test/SIMDTest.jl")';
1515
after_success:
16-
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
17-
- julia -e 'using Pkg; Pkg.add("Documenter")'
18-
- julia -e 'include("docs/make.jl")'
16+
- julia --color=yes -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
17+
- julia --color=yes -e 'using Pkg; Pkg.add("Documenter")'
18+
- julia --color=yes -e 'include("docs/make.jl")'

0 commit comments

Comments
 (0)