From c5e9ecb5b1a86ce0a79ca74c1efcf98c7fbcb253 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 05:24:02 +0000 Subject: [PATCH] Use python3 -m pip explicitly --- .gitea/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0a84e9c..ae862f6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,8 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - run: git clone https://gitea.com/7000pctAUTO/json-to-openapi . + run: | + git clone https://gitea.com/7000pctAUTO/json-to-openapi . - name: Install - run: pip install -e . pytest + run: | + python3 -m pip install --upgrade pip + python3 -m pip install -e . + python3 -m pip install pytest - name: Test - run: pytest tests/ -v + run: python3 -m pytest tests/ -v