Skip to content

Commit bd5bec7

Browse files
committed
chore: fix shellcheck warnings
1 parent a1a315a commit bd5bec7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
cache-suffix: test
4646
- name: Install pip dependencies
47-
run: uv pip install --system https://github.com/WeblateOrg/weblate/archive/main.zip -e .[test]
47+
run: uv pip install --system https://github.com/WeblateOrg/weblate/archive/main.zip -e ".[test]"
4848
- name: Test with Django
4949
env:
5050
CI_DATABASE: postgresql
@@ -53,7 +53,7 @@ jobs:
5353
DJANGO_SETTINGS_MODULE: wlhosted.settings_test
5454
run: |
5555
weblate collectstatic --noinput
56-
coverage run `which weblate` test
56+
coverage run "$(which weblate)" test
5757
- uses: codecov/codecov-action@v5
5858
with:
5959
token: ${{secrets.CODECOV_TOKEN}}

0 commit comments

Comments
 (0)