From 9cb79bcc1e28225fd78393baa8a6761fa4cfad4a Mon Sep 17 00:00:00 2001 From: Ernst Odolphi Date: Wed, 5 Feb 2025 10:43:11 +0100 Subject: [PATCH] Debug --- .github/workflows/quality_checks.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/quality_checks.yml b/.github/workflows/quality_checks.yml index 3d4a856010..29417a70c0 100644 --- a/.github/workflows/quality_checks.yml +++ b/.github/workflows/quality_checks.yml @@ -21,7 +21,7 @@ jobs: run: virtualenv env - name: Activate virtualenv - run: source env/bin/activate + run: - name: debug run: echo `which python` @@ -30,14 +30,19 @@ jobs: run: echo `which pip` - name: Install pip dependencies - run: pip install -e .[test] + run: | + source env/bin/activate + pip install -e .[test] - name: Extract messages - run: python manage.py makemessages --locale=en --ignore=bluebottle/notifications/tests/ + run: | + source env/bin/activate + python manage.py makemessages --locale=en --ignore=bluebottle/notifications/tests/ - name: Check missing translations - run: python ./locale/check_translatoins.py --locales=nl > translation-message.txt - id: missingTranslations + run: | + source env/bin/activate + python ./locale/check_translatoins.py --locales=nl > translation-message.txt - name: Echo run: echo translation-message.txt