Skip to content

Commit abb3f4d

Browse files
authored
Merge pull request #195 from nirtal85/activate-ue
uv
2 parents e36efc3 + 3f6e356 commit abb3f4d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/devRun.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ jobs:
2929
PLAYWRIGHT_VERSION=$(grep -E '^playwright = "[^"]*"' pyproject.toml | sed -E 's/playwright = "([^"]*)".*$/\1/')
3030
npx playwright@$PLAYWRIGHT_VERSION install --with-deps
3131
- name: Test with pytest
32-
run: |
33-
source .venv/bin/activate
34-
xvfb-run pytest -m devRun --base-url ${{ vars.BASE_URL }}
32+
run: xvfb-run .venv/bin/python -m pytest -m devRun --base-url ${{ vars.BASE_URL }}
3533
- name: Auto-assign reviewers
3634
uses: kentaro-m/[email protected]
3735
if: success()

.github/workflows/nightly.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ jobs:
5454
npx playwright@$PLAYWRIGHT_VERSION install --with-deps
5555
- name: Run Tests
5656
run: |
57-
source .venv/bin/activate
58-
xvfb-run pytest ${{ github.event.inputs.pytest_command || '-m "not devRun"' }} \
57+
xvfb-run .venv/bin/python -m pytest ${{ github.event.inputs.pytest_command || '-m "not devRun"' }} \
5958
--base-url ${{ vars.BASE_URL }} \
6059
--splits ${{ github.event.inputs.parallelism || 2 }} \
6160
--group ${{ matrix.group }}

0 commit comments

Comments
 (0)