From 2ced0f6c43411f2ffea9b69e675a2f16a23fb884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brage=20Skj=C3=B8nborg?= Date: Sun, 4 Jan 2026 14:48:15 +0100 Subject: [PATCH] Runner8 --- .github/workflows/build-python-app.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-python-app.yml b/.github/workflows/build-python-app.yml index 4f53e3cd..92288ae8 100644 --- a/.github/workflows/build-python-app.yml +++ b/.github/workflows/build-python-app.yml @@ -25,19 +25,14 @@ jobs: steps: - uses: actions/checkout@v4 - # Optional: install runtime dependencies if requirements.txt exists - - name: Install runtime dependencies - if: ${{ hashFiles(format('apps/{0}/requirements.txt', inputs.app)) != '' }} - run: | - cd apps/${{ inputs.app }} - pip install -r requirements.txt - # Install test dependencies (pytest, asyncio test libs, etc.) - name: Install test dependencies - if: ${{ exists(format('apps/{0}/requirements-test.txt', inputs.app)) }} run: | cd apps/${{ inputs.app }} - pip install -r requirements-test.txt + if [ -f requirements-test.txt ]; then + pip install -r requirements-test.txt + fi + # Run Python tests - name: Run Python tests