Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test-pytest-slow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
env:
PYTHON: ${{ matrix.python-version }}
MPLBACKEND: Agg
# Force Mesa software rendering so VTK/PyVista off-screen tests don't hit
# intermittent OpenGL bus errors on headless runners (#1078).
LIBGL_ALWAYS_SOFTWARE: "1"
GALLIUM_DRIVER: llvmpipe
steps:
- uses: actions/checkout@main
- name: Set up headless display
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test_pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
MPLBACKEND: Agg
# Force Mesa software rendering so VTK/PyVista off-screen tests don't hit
# intermittent OpenGL bus errors on headless runners (#1078). No-op off
# Linux, so it is safe for the macOS/Windows matrix legs.
LIBGL_ALWAYS_SOFTWARE: "1"
GALLIUM_DRIVER: llvmpipe
steps:
- uses: actions/checkout@main
- name: Set up headless display
Expand Down
Loading