Run tests of GraphRecipes and StatsPlots (#3519)

* run tests of StatsPlots and GraphRecipes

* one environment each

* correct paths
This commit is contained in:
Simon Christ 2021-06-03 11:08:37 +02:00 committed by Daniel Schwabeneder
parent 01de99f4c8
commit 69b600f7c1

View File

@ -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