Skip to content

Commit

Permalink
Remove test names from the .travis.yml, since they really aren't prov…
Browse files Browse the repository at this point in the history
…iding any useful information (and in fact seem to be doing a better job of obfuscating it).
  • Loading branch information
kernelmethod committed Jan 20, 2020
1 parent 83de6bb commit 06fe7d6
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,27 @@ jobs:
###### Tests
### Julia 1.0
- stage: "Unit tests"
name: "Unit tests (Julia 1.0) (Linux)"
julia: 1.0
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia 1.1
- stage: "Unit tests"
name: "Unit tests (Julia 1.1) (Linux)"
julia: 1.1
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia 1.2
- stage: "Unit tests"
name: "Unit tests (Julia 1.2) (Linux)"
julia: 1.2
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

### Julia 1.3
- stage: "Unit tests"
name: "Unit tests (Julia 1.3) (Linux)"
julia: 1.3
os: linux
script:
Expand All @@ -51,37 +47,32 @@ jobs:
- julia -e 'using Coverage; Codecov.submit(Codecov.process_folder());'

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

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

### Julia nightly
- stage: # Unit tests
name: "Unit tests (Julia nightly) (Linux)"
julia: nightly
os: linux
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'

- stage: # Unit tests
name: "Unit tests (Julia nightly) (OSX)"
julia: nightly
os: osx
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'
julia: nightly

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

0 comments on commit 06fe7d6

Please sign in to comment.