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 a1a315a commit bd5bec7Copy full SHA for bd5bec7
.github/workflows/test.yml
@@ -44,7 +44,7 @@ jobs:
44
with:
45
cache-suffix: test
46
- name: Install pip dependencies
47
- run: uv pip install --system https://github.com/WeblateOrg/weblate/archive/main.zip -e .[test]
+ run: uv pip install --system https://github.com/WeblateOrg/weblate/archive/main.zip -e ".[test]"
48
- name: Test with Django
49
env:
50
CI_DATABASE: postgresql
@@ -53,7 +53,7 @@ jobs:
53
DJANGO_SETTINGS_MODULE: wlhosted.settings_test
54
run: |
55
weblate collectstatic --noinput
56
- coverage run `which weblate` test
+ coverage run "$(which weblate)" test
57
- uses: codecov/codecov-action@v5
58
59
token: ${{secrets.CODECOV_TOKEN}}
0 commit comments