Skip to content

Commit b464af8

Browse files
committed
test
1 parent f800ee5 commit b464af8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,12 @@ jobs:
9696
pip install -e .
9797
python -m build --wheel
9898
python -m playwright install --with-deps ${{ matrix.browser }}
99-
- name: Common Tests
100-
run: pytest tests/common --browser=${{ matrix.browser }} --timeout 90
101-
- name: Test Reference count
102-
run: pytest tests/test_reference_count_async.py --browser=${{ matrix.browser }}
103-
- name: Test Wheel Installation
104-
run: pytest tests/test_installation.py --browser=${{ matrix.browser }}
10599
- name: Test Sync API
106100
if: matrix.os != 'ubuntu-latest'
107-
run: pytest tests/sync --browser=${{ matrix.browser }} --timeout 90
101+
run: python -m pytest tests/sync --browser=${{ matrix.browser }} --timeout 90
108102
- name: Test Sync API
109103
if: matrix.os == 'ubuntu-latest'
110-
run: xvfb-run pytest tests/sync --browser=${{ matrix.browser }} --timeout 90
104+
run: xvfb-run python -m pytest tests/sync --browser=${{ matrix.browser }} --timeout 90
111105
- name: Test Async API
112106
if: matrix.os != 'ubuntu-latest'
113107
run: pytest tests/async --browser=${{ matrix.browser }} --timeout 90

0 commit comments

Comments
 (0)