From 111178c3ee5d21c00ec9d7b69cfe572aa21adb92 Mon Sep 17 00:00:00 2001 From: Jon Malmaud Date: Tue, 28 Aug 2018 17:49:37 -0400 Subject: [PATCH] Update travis --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 71d0b992..81fc49db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,10 +14,10 @@ env: notifications: email: false script: - - julia -e 'Pkg.clone(pwd())' - - julia -e 'Pkg.build("TensorFlow")' - - julia -e 'Pkg.test("TensorFlow", coverage=true)' + - julia -e 'using Pkg; Pkg.clone(pwd())' + - julia -e 'using Pkg; Pkg.build("TensorFlow")' + - julia -e 'using Pkg; Pkg.test("TensorFlow", coverage=true)' after_success: -- julia -e 'cd(Pkg.dir("TensorFlow")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())' -- julia -e 'Pkg.add("Documenter")' -- julia -e 'cd(Pkg.dir("TensorFlow")); include(joinpath("docs", "make.jl"))' +- julia -e 'using Pkg; cd(Pkg.dir("TensorFlow")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())' +- julia -e 'using Pkg; Pkg.add("Documenter")' +- julia -e 'using Pkg; cd(Pkg.dir("TensorFlow")); include(joinpath("docs", "make.jl"))'