From 5b68bcb9f8fb03b6f9e05dad0524c89d17489e2d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 21:06:59 +0000 Subject: [PATCH] fix: CI with ensurepip and pip install --- .gitea/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8f28938..4b08e3a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,5 +7,9 @@ jobs: - run: | git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git /tmp/confsync - run: | - python3 -m ensurepip --upgrade || echo "ensurepip failed" - python3 -m pip --version || echo "pip not available" + python3 -m ensurepip --upgrade + python3 -m pip install --upgrade pip + python3 -m pip --version + - run: | + python3 -m pip install pytest + python3 -m pytest --version