Bump pytest from 8.3.3 to 8.3.4 #1147
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["trunk"] | |
pull_request: | |
branches: ["trunk"] | |
jobs: | |
tox: | |
name: "tox -e ${{ matrix.tox-env }}" | |
strategy: | |
matrix: | |
tox-env: ["test", "lint"] | |
runs-on: ubuntu-24.04 | |
env: | |
TOXENV: "${{ matrix.tox-env }}" | |
RUFF_OUTPUT_FORMAT: "github" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.9" | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements.txt | |
requirements_*.txt | |
- run: "python -m pip install tox" | |
# Temporary hack: create files normally created by Webpack that are | |
# expected to exist by the manifest.json view test. | |
- run: | | |
mkdir yarrharr/static | |
touch yarrharr/static/{icon,logotype,lettertype}-xyz.{ico,png,svg} | |
touch yarrharr/static/{normalize,main,fonts}-xyz.css | |
touch yarrharr/static/{runtime,vendor,main}-xyz.js | |
- run: "python -m tox" | |
webpack: | |
name: "tox -e static" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: apt install | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-suggests --no-install-recommends inkscape icoutils scour optipng | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.9" | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements_static.txt | |
- run: "python -m pip install tox" | |
- run: "python -m tox -e static --notest" | |
- run: "tox -e static" |