From 74ab23f0b66393eb53b8324ea9ae49dfd6172f7a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:24:05 +0000 Subject: [PATCH] Install Pillow dependencies --- .gitea/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4ff3afc..1ff7643 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,15 +4,15 @@ on: [push] jobs: test: runs-on: ubuntu-latest - container: python:3.11-bullseye + container: python:3.11-slim steps: - name: Checkout run: | - apt-get update -qq && apt-get install -y -qq git > /dev/null + apt-get update -qq && apt-get install -y -qq git libjpeg-dev zlib1g-dev > /dev/null git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/man-card.git - name: Test run: | - pip install click fpdf2 Pillow rich pytest pytest-cov - pip install -e . + pip install --no-cache-dir click fpdf2 Pillow rich pytest pytest-cov + pip install --no-cache-dir -e . pytest tests/ -v --tb=short