Skip to content

Commit 3412ecb

Browse files
committed
add a Project.toml, remove REQUIRE, update travis conf
- replace REQUIRE with a Project.toml, porting version bounds as is - use a more recent Travis setup - drop support for 0.7, but test on 1.1 and 1.2 too
1 parent 8c73596 commit 3412ecb

File tree

6 files changed

+407
-16
lines changed

6 files changed

+407
-16
lines changed

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.travis.yml

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
1+
## Documentation: http://docs.travis-ci.com/user/languages/julia/
12
language: julia
3+
dist: xenial
24
os:
35
- linux
46
- osx
57
julia:
6-
- 0.7
78
- 1.0
9+
- 1.1
10+
- 1.2
811
- nightly
9-
matrix:
10-
allow_failures:
11-
- julia: nightly
1212
notifications:
1313
email: false
14-
# Uncomment the following lines to override the default test script
15-
#script:
16-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("KernelDensity"); Pkg.test("KernelDensity"; coverage=true)'
14+
git:
15+
depth: 99999999
16+
17+
## uncomment the following lines to allow failures on nightly julia
18+
## (tests will run but not make your overall status red)
19+
#matrix:
20+
# allow_failures:
21+
# - julia: nightly
22+
23+
## uncomment following lines to deploy documentation
24+
# jobs:
25+
# include:
26+
# - stage: Documentation
27+
# julia: 1.0
28+
# os: linux
29+
# script:
30+
# - julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
31+
# - julia --project=docs --color=yes docs/make.jl
32+
# after_success: skip
1833
after_success:
19-
- julia -e 'import Pkg, KernelDensity; cd(joinpath(dirname(pathof(KernelDensity)), "..")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
34+
- julia --project=test/coverage -e 'using Pkg; Pkg.instantiate()'
35+
- julia --project=test/coverage test/coverage/coverage.jl

0 commit comments

Comments
 (0)