From 472606dfa516cfbf7aba43100f7ff9e6c31bac00 Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Sun, 9 Nov 2025 15:19:43 +0100 Subject: [PATCH] more ci tests --- .gitea/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 208ba4c..fbde196 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -29,13 +29,15 @@ jobs: run: | python -m pip install --upgrade pip # Install package in development mode (force reinstall pyweblayout to get latest from master) - pip install --upgrade --force-reinstall --no-deps git+https://gitea.tourolle.paris/dtourolle/pyWebLayout@master + pip install --upgrade --force-reinstall --no-deps --no-cache-dir git+https://gitea.tourolle.paris/dtourolle/pyWebLayout@master pip install -e . # Install test dependencies if they exist if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi if [ -f requirements/test.txt ]; then pip install -r requirements/test.txt; fi # Install common test packages pip install pytest pytest-cov flake8 coverage-badge interrogate + # Debug: Show pyWebLayout version info + python -c "import pyWebLayout; print(f'pyWebLayout location: {pyWebLayout.__file__}')" - name: Download initial failed badges run: |