From 38ef69b6efaad29e38d9aa4625761989511bad44 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Fri, 21 May 2021 16:05:39 +0200 Subject: [PATCH] run tests of StatsPlots and GraphRecipes --- .github/workflows/ci.yml | 5 ++++- Project.toml | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 797cc072..7b7bcb0f 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 --project -e 'using Pkg; Pkg.test("StatsPlots");' + $TESTCMD --project -e 'using Pkg; Pkg.test("GraphRecipes");' - name: Codecov uses: julia-actions/julia-uploadcodecov@latest diff --git a/Project.toml b/Project.toml index 2c0b4909..67dc558a 100644 --- a/Project.toml +++ b/Project.toml @@ -57,6 +57,7 @@ julia = "1.5" Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" Gtk = "4c0ca9eb-093a-5379-98c5-f87ac0bbbf44" +GraphRecipes = "bd48cda9-67a9-57be-86fa-5b3c104eda73" HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1" Images = "916415d5-f1e6-5110-898d-aaa5f9f070e0" @@ -74,4 +75,4 @@ UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] -test = ["Distributions", "FileIO", "Gtk", "ImageMagick", "Images", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "HDF5", "RDatasets", "StableRNGs", "StaticArrays", "StatsPlots", "Test", "TestImages", "UnicodePlots", "VisualRegressionTests"] +test = ["Distributions", "FileIO", "Gtk", "GraphRecipes", "ImageMagick", "Images", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "HDF5", "RDatasets", "StableRNGs", "StaticArrays", "StatsPlots", "Test", "TestImages", "UnicodePlots", "VisualRegressionTests"]