Skip to content

Commit 9fc72d2

Browse files
authored
CI: disable Revise tests on OSX (#70)
The runtime is just so loooong on OSX
1 parent 343d454 commit 9fc72d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ notifications:
2121
script:
2222
- export JULIA_PROJECT=""
2323
- julia --project -e 'using Pkg; Pkg.build(); Pkg.test();'
24-
- julia -e 'using Pkg; Pkg.develop(PackageSpec(path="."));
24+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then julia -e 'using Pkg; Pkg.develop(PackageSpec(path="."));
2525
Pkg.add(PackageSpec(url="https://github.com/timholy/Revise.jl"));
26-
Pkg.test("Revise")'
26+
Pkg.test("Revise")'; fi
2727

2828
after_success:
2929
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

0 commit comments

Comments
 (0)