Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restore downstream tests - integrate GraphRecipes and StatsPlots into monorepo #5000

Merged
merged 13 commits into from
Oct 13, 2024
Prev Previous commit
Next Next commit
priority
  • Loading branch information
t-bltg committed Oct 13, 2024
commit b05726c2fad701647b4ddd3be5c903bed820dfa2
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ jobs:
JULIA_PKG_PRECOMPILE_AUTO: 0
run: julia --color=yes ci/matplotlib.jl

- name: Test downstream packages
if: startsWith(matrix.os, 'ubuntu')
run: |
xvfb-run julia --color=yes ci/downstream.jl GraphRecipes
xvfb-run julia --color=yes ci/downstream.jl StatsPlots

- name: Test RecipesBase, RecipesPipeline, PlotsBase, Plots
timeout-minutes: 60
run: |
Expand All @@ -89,11 +95,6 @@ jobs:
using Pkg
foreach(name -> Pkg.test(name; coverage=true), ("RecipesBase", "RecipesPipeline", "PlotsBase", "Plots"))
'
- name: Test downstream packages
if: startsWith(matrix.os, 'ubuntu')
run: |
xvfb-run julia --color=yes ci/downstream.jl GraphRecipes
xvfb-run julia --color=yes ci/downstream.jl StatsPlots

- uses: julia-actions/julia-processcoverage@latest
if: startsWith(matrix.os, 'ubuntu')
Expand Down
Loading