Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
7 changes: 5 additions & 2 deletions .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python3 -m pip install --editable .[test]
- name: Run pytest tests
run: MPLBACKEND=Agg GPSEA_CACHEDIR=.gpsea_ci_cachedir pytest
- name: Run tests
env:
MPLBACKEND: "Agg"
GPSEA_CACHEDIR: ".gpsea_ci_cachedir"
run: pytest

formatting:
name: Check code formatting
Expand Down
Loading