Skip to content

Commit c7953e0

Browse files
committed
Try to get Codecov to combine multiple coverage files; will hopefully hit vfilter tests on Julia master.
1 parent e13c990 commit c7953e0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@ jobs:
2525
Pkg.instantiate();
2626
include("docs/make.jl");'
2727
after_success: skip
28+
env:
29+
global:
30+
- COVERALLS_PARALLEL=true
31+
notifications:
32+
webhooks: https://coveralls.io/webhook

test/runtests.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,6 @@ end
13951395
fill!(D2, -999999); D2 = @avx C .+ At' *ˡ B;
13961396
@test D1 D2
13971397
if T <: Union{Float32,Float64}
1398-
@show T, @__LINE__
13991398
D3 = cos.(B');
14001399
D4 = @avx cos.(B');
14011400
@test D3 D4
@@ -1575,7 +1574,7 @@ end
15751574

15761575

15771576
N = 117
1578-
@time for T (Float32, Float64, Int32, Int64)
1577+
for T (Float32, Float64, Int32, Int64)
15791578
@show T, @__LINE__
15801579
if T <: Integer
15811580
a = rand(-T(100):T(100), N); b = rand(-T(100):T(100), N);

0 commit comments

Comments
 (0)