Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
eodolphi committed Feb 5, 2025
1 parent d38aa25 commit 9cb79bc
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: virtualenv env

- name: Activate virtualenv
run: source env/bin/activate
run:

- name: debug
run: echo `which python`
Expand All @@ -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
Expand Down

0 comments on commit 9cb79bc

Please sign in to comment.