Skip to content

Commit

Permalink
Run tests of GraphRecipes and StatsPlots (#3519)
Browse files Browse the repository at this point in the history
* run tests of StatsPlots and GraphRecipes

* one environment each

* correct paths
  • Loading branch information
BeastyBlacksmith authored Jun 3, 2021
1 parent fb390d1 commit 25b57cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 25b57cf

Please sign in to comment.