File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments