File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,18 @@ notifications:
44julia :
55 - 0.6
66 - 0.7
7+ - 1.0
78 - nightly
89# script:
910# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1011# - julia -e 'Pkg.init(); Pkg.clone(pwd()); Pkg.test("Decimals")'
1112# - julia --code-coverage test/runtests.jl
1213after_success :
13- - julia -e 'cd(Pkg.dir("Decimals")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
14+ - |
15+ julia -e '
16+ VERSION >= v"0.7.0-DEV.3656" && using Pkg
17+ VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("Decimals"))
18+ Pkg.add("Coverage")
19+ using Coverage
20+ Coveralls.submit(Coveralls.process_folder())
21+ '
Original file line number Diff line number Diff line change 11using Decimals
22using Compat. Test
3+ using Compat: @info
34
45@testset " Deprecated Functions" begin
5- info (" The following deprecation warnings are expected" )
6+ @ info (" The following deprecation warnings are expected" )
67
78 @test inv (d) == map (inv, d)
89
You can’t perform that action at this time.
0 commit comments