Skip to content

Commit 507eab4

Browse files
author
Obada Haddad
committed
fix uv location
1 parent c60c0d5 commit 507eab4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests_pytest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
run: |
1818
cd playwrightPython
1919
curl -LsSf https://astral.sh/uv/install.sh | sh
20-
uv sync
21-
uv run playwright install --with-deps
20+
$HOME/.local/bin/uv sync
21+
$HOME/.local/bin/uv run playwright install --with-deps
2222
- name: "Docker: Build containers and collect static files"
2323
run: |
2424
docker compose -f docker-compose.yml -f docker-compose.selenium.yml -f docker-compose.playwright.yml up -d
@@ -49,7 +49,7 @@ jobs:
4949
needs: [linter,build]
5050
steps:
5151
- name: "Tests: Run end-to-end (E2E) tests"
52-
run: cd playwrightPython && uv run pytest test_auth.py test_account_creation.py test_submission.py
52+
run: cd playwrightPython && $HOME/.local/bin/uv run pytest test_auth.py test_account_creation.py test_submission.py
5353
cleanup:
5454
name: Cleanup
5555
runs-on: self-hosted

0 commit comments

Comments
 (0)