From 2ea4ffe096d583e18c8bf4f476ad6c285e2ccf89 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Fri, 21 May 2021 16:29:12 +0200 Subject: [PATCH] one environment each --- .github/workflows/ci.yml | 4 ++-- Project.toml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b7bcb0f..66126dc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,8 +73,8 @@ jobs: - name: Run Graphical test 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");' + $TESTCMD -e 'using Pkg; Pkg.activate(tmpdir()); Pkg.develop(path="."); Pkg.add("StatsPlots"); Pkg.test("StatsPlots");' + $TESTCMD -e 'using Pkg; Pkg.activate(tmpdir()); Pkg.develop(path="."); Pkg.add("GraphRecipes"); Pkg.test("GraphRecipes");' - name: Codecov uses: julia-actions/julia-uploadcodecov@latest diff --git a/Project.toml b/Project.toml index 67dc558a..2c0b4909 100644 --- a/Project.toml +++ b/Project.toml @@ -57,7 +57,6 @@ 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" @@ -75,4 +74,4 @@ UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] -test = ["Distributions", "FileIO", "Gtk", "GraphRecipes", "ImageMagick", "Images", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "HDF5", "RDatasets", "StableRNGs", "StaticArrays", "StatsPlots", "Test", "TestImages", "UnicodePlots", "VisualRegressionTests"] +test = ["Distributions", "FileIO", "Gtk", "ImageMagick", "Images", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "HDF5", "RDatasets", "StableRNGs", "StaticArrays", "StatsPlots", "Test", "TestImages", "UnicodePlots", "VisualRegressionTests"]