Skip to content

Commit 6af404c

Browse files
committed
Update .travis.yml.
1 parent e5c402a commit 6af404c

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.travis.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ notifications:
66
jobs:
77
allow_failures:
88
- env: TRAVIS_JULIA_VERSION=nightly
9-
- env: TRAVIS_OS_NAME=windows
9+
- os: osx
10+
- os: windows
1011
include:
1112
###### Tests
1213
### Julia 1.3
13-
- stage: "Test (Julia 1.3)"
14+
- stage: "Unit tests"
15+
name: "Unit tests (Julia 1.3) (Linux)"
1416
julia: 1.3
1517
os: linux
1618
script:
@@ -21,32 +23,34 @@ jobs:
2123
- julia -e 'using Coverage; Coveralls.submit(Coveralls.process_folder());'
2224
- julia -e 'using Coverage; Codecov.submit(Codecov.process_folder());'
2325

24-
- stage: # Test (Julia 1.3)
26+
- stage: # Unit tests
27+
name: "Unit tests (Julia 1.3) (OSX)"
2528
julia: 1.3
2629
os: osx
2730
script:
2831
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
2932

30-
- stage: # Test (Julia 1.3)
33+
- stage: # Unit tests
34+
name: "Unit tests (Julia 1.3) (Windows)"
3135
julia: 1.3
3236
os: windows
3337
script:
3438
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
3539

3640
### Julia nightly
37-
- stage: "Test (Julia nightly)"
41+
- stage: # Unit tests
42+
name: "Unit tests (Julia nightly) (Linux)"
3843
julia: nightly
3944
os: linux
4045
script:
4146
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
4247

43-
- stage: # Test (Julia nightly)
48+
- stage: # Unit tests
49+
name: "Unit tests (Julia nightly) (OSX)"
4450
julia: nightly
4551
os: osx
4652
script:
4753
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
48-
49-
- stage: # Test (Julia nightly)
5054
julia: nightly
5155
os: windows
5256
script:

0 commit comments

Comments
 (0)