From 16c8785a740a165fc1ea61ae3d1a06b19c90214d Mon Sep 17 00:00:00 2001 From: Matt Bauman Date: Fri, 18 Jan 2019 09:45:54 -0600 Subject: [PATCH 1/2] Re-enable coverage --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index c233ebe..22b6110 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,3 +14,6 @@ matrix: - julia: nightly notifications: email: false +after_success: + # push coverage results to Codecov + - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' From f72dc424ee8fbd09686a993468a6512544c4a7d7 Mon Sep 17 00:00:00 2001 From: Matt Bauman Date: Fri, 18 Jan 2019 10:34:36 -0600 Subject: [PATCH 2/2] Get coverage on 0.6 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 22b6110..35c46e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,5 @@ matrix: notifications: email: false after_success: - # push coverage results to Codecov - - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' + # push coverage results to Coveralls + - julia -e 'VERSION >= v"0.7" && using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'