From 5541654e4e45d25a57156ed8b0d01b9f3bdd3e45 Mon Sep 17 00:00:00 2001 From: Kevin Squire Date: Mon, 11 Jan 2016 08:54:55 -0800 Subject: [PATCH] Turn off bounds checking --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0c01ae2f6..180c341cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,6 @@ 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")' + - julia -e 'Pkg.clone(pwd()); Pkg.build("Distributions"); Pkg.test("Distributions")' after_success: - julia -e 'cd(Pkg.dir("Distributions")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'