Skip to content

Commit cd056d8

Browse files
committed
Explicitly ask for all browsers
1 parent 1925794 commit cd056d8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ jobs:
274274
- name: Run pytest
275275
run: |
276276
python -mpytest -raR -n auto \
277+
--browser chromium --browser firefox --browser webkit \
277278
--maxfail=50 --timeout=300 --durations=25 \
278279
--cov-report=xml --cov=lib --log-level=DEBUG --color=yes
279280

azure-pipelines.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ stages:
145145
displayName: 'print pip'
146146

147147
- bash: |
148-
PYTHONFAULTHANDLER=1 python -m pytest --junitxml=junit/test-results.xml -raR --maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib -n 2 ||
148+
PYTHONFAULTHANDLER=1 python -m pytest \
149+
--junitxml=junit/test-results.xml -raR -n 2 \
150+
--browser chromium --browser firefox --browser webkit \
151+
--maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib ||
149152
[[ "$PYTHON_VERSION" = 'Pre' ]]
150153
displayName: 'pytest'
151154

0 commit comments

Comments
 (0)