Skip to content

Commit 06fe7d6

Browse files
committed
Remove test names from the .travis.yml, since they really aren't providing any useful information (and in fact seem to be doing a better job of obfuscating it).
1 parent 83de6bb commit 06fe7d6

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.travis.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,27 @@ jobs:
1515
###### Tests
1616
### Julia 1.0
1717
- stage: "Unit tests"
18-
name: "Unit tests (Julia 1.0) (Linux)"
1918
julia: 1.0
2019
os: linux
2120
script:
2221
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
2322

2423
### Julia 1.1
2524
- stage: "Unit tests"
26-
name: "Unit tests (Julia 1.1) (Linux)"
2725
julia: 1.1
2826
os: linux
2927
script:
3028
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
3129

3230
### Julia 1.2
3331
- stage: "Unit tests"
34-
name: "Unit tests (Julia 1.2) (Linux)"
3532
julia: 1.2
3633
os: linux
3734
script:
3835
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
3936

4037
### Julia 1.3
4138
- stage: "Unit tests"
42-
name: "Unit tests (Julia 1.3) (Linux)"
4339
julia: 1.3
4440
os: linux
4541
script:
@@ -51,37 +47,32 @@ jobs:
5147
- julia -e 'using Coverage; Codecov.submit(Codecov.process_folder());'
5248

5349
- stage: # Unit tests
54-
name: "Unit tests (Julia 1.3) (OSX)"
5550
julia: 1.3
5651
os: osx
5752
script:
5853
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
5954

6055
- stage: # Unit tests
61-
name: "Unit tests (Julia 1.3) (Windows)"
6256
julia: 1.3
6357
os: windows
6458
script:
6559
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
6660

6761
### Julia nightly
6862
- stage: # Unit tests
69-
name: "Unit tests (Julia nightly) (Linux)"
7063
julia: nightly
7164
os: linux
7265
script:
7366
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
7467

7568
- stage: # Unit tests
76-
name: "Unit tests (Julia nightly) (OSX)"
7769
julia: nightly
7870
os: osx
7971
script:
8072
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
8173
julia: nightly
8274

8375
- stage: # Unit tests
84-
name: "Unit tests (Julia nightly) (Windows)"
8576
os: windows
8677
script:
8778
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

0 commit comments

Comments
 (0)