From ee0cd22ce2d9b98823c26c6f59e3af806a0b2ca5 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Wed, 13 Feb 2019 09:38:35 +0100 Subject: [PATCH] also test debugger on travis (#19) --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index a6dc50e7e8031..ed6bec060a965 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,14 @@ branches: notifications: email: false +script: + - export JULIA_PROJECT="" + - julia --project -e 'using Pkg; Pkg.build(); Pkg.test();' + - julia --color=yes -e 'using Pkg; Pkg.develop(PackageSpec(path=".")); + Pkg.add(PackageSpec(url="https://github.com/JuliaDebug/Debugger.jl")); + Pkg.add(PackageSpec(url="https://github.com/Keno/TerminalRegressionTests.jl")); + Pkg.test("Debugger")' + jobs: include: - stage: "Documentation"