Skip to content
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
# the job, which is what a job-level continue-on-error would have hidden.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- run: pip install -e ".[icons]" pytest pandas
Expand Down Expand Up @@ -87,8 +87,8 @@ jobs:
# here means the pre-release changed something rather than that this job is misconfigured.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- run: pip install -e ".[icons]" pytest pandas
Expand Down Expand Up @@ -133,8 +133,8 @@ jobs:
# The uploaded summary shows which images differ and by how much when one fails.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- run: pip install -e ".[icons]" pytest pytest-mpl
Expand All @@ -145,7 +145,7 @@ jobs:
pytest tests/test_images.py --mpl
--mpl-generate-summary=html
--mpl-results-path=image-results
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: image-comparison-results
Expand All @@ -158,8 +158,8 @@ jobs:
# still passes.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- run: pip install -e ".[icons]" pandas nbconvert nbformat ipykernel
Expand Down