From 69b600f7c125bc304cd7ae05bb04841b46968e92 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Thu, 3 Jun 2021 11:08:37 +0200 Subject: [PATCH] Run tests of GraphRecipes and StatsPlots (#3519) * run tests of StatsPlots and GraphRecipes * one environment each * correct paths --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 797cc072f..45a723a92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,10 @@ jobs: # Run tests - name: Run Graphical test - run: $TESTCMD --project -e 'using Pkg; Pkg.test(coverage=true);' + run: | + $TESTCMD --project -e 'using Pkg; Pkg.test(coverage=true);' + $TESTCMD -e 'using Pkg; Pkg.activate(tempdir()); Pkg.develop(path=abspath(".")); Pkg.add("StatsPlots"); Pkg.test("StatsPlots");' + $TESTCMD -e 'using Pkg; Pkg.activate(tempdir()); Pkg.develop(path=abspath(".")); Pkg.add("GraphRecipes"); Pkg.test("GraphRecipes");' - name: Codecov uses: julia-actions/julia-uploadcodecov@latest