Skip to content

Commit 1111d9d

Browse files
authored
Update .travis.yml
`add` doesn't work with `pwd`. lets leave `clone` for now
1 parent ec61e8e commit 1111d9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
julia: 0.7
2727
os: linux
2828
script:
29-
- julia -e 'import Pkg; Pkg.add(pwd()); Pkg.build("MLDatasets")'
29+
- julia -e 'import Pkg; Pkg.clone(pwd()); Pkg.build("MLDatasets")'
3030
- julia -e 'import Pkg; Pkg.add("Documenter")'
3131
- julia -e 'import MLDatasets; ENV["DOCUMENTER_DEBUG"] = "true"; include(joinpath("docs","make.jl"))'
3232

3333
## uncomment the following lines to override the default test script
34-
script:
35-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
36-
- julia --check-bounds=yes --color=yes -e 'import Pkg; Pkg.add(pwd()); Pkg.build("MLDatasets"); Pkg.test("MLDatasets"; coverage=true)';
34+
#script:
35+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
36+
# - julia --check-bounds=yes --color=yes -e 'import Pkg; Pkg.clone(pwd()); Pkg.build("MLDatasets"); Pkg.test("MLDatasets"; coverage=true)';
3737

3838
after_success:
3939
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'

0 commit comments

Comments
 (0)