From 00534cce2956d92f09595be6f48d8a591ce307a0 Mon Sep 17 00:00:00 2001 From: Simon Byrne Date: Fri, 6 Feb 2015 14:29:40 +0000 Subject: [PATCH] try to get coverage working --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 18bafad37..855769c38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,8 @@ julia: - nightly notifications: email: false +script: + - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi + - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Distributions"); Pkg.test("Distributions"; coverage=true)' after_success: - julia -e 'cd(Pkg.dir("Distributions")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'