We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa75cf commit acb4ccfCopy full SHA for acb4ccf
.github/workflows/tests.yml
@@ -33,6 +33,8 @@ jobs:
33
uses: actions/setup-python@v5
34
with:
35
python-version: ${{ env.PYTHON_VERSION }}
36
+ - name: Install gettext
37
+ run: sudo apt-get update && sudo apt-get install -y gettext
38
- name: Install dependencies
39
run: |
40
python -m pip install --upgrade pip setuptools
Makefile
@@ -4,9 +4,12 @@ APP_LIST ?= accounts aggregator blog contact dashboard djangoproject docs founda
4
SCSS = djangoproject/scss
5
STATIC = djangoproject/static
6
7
-ci: test
+ci: compilemessages test
8
@python -m coverage report
9
10
+compilemessages:
11
+ python -m manage compilemessages
12
+
13
collectstatics: compile-scss
14
python -m manage collectstatic --noinput
15
0 commit comments