Skip to content

Commit 82fabf9

Browse files
Fixes
1 parent 1a1d41d commit 82fabf9

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/selenium_safari_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
3636
- name: Run Selenium Safari tests with py${{ matrix.python-version }}
3737
run: |
38-
tox -e py${{ env.TOX_ENV }}-selenium-safari -- --headless -v --sv
38+
tox -e py${{ env.TOX_ENV }}-selenium-safari -- --headless -v -k='not screenshot'

.github/workflows/selenium_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848
4949
- name: Run Selenium ${{ env.BROWSER }} tests with py${{ matrix.python-version }}
5050
run: |
51-
tox -e py${{ env.TOX_ENV }}-selenium-${{ env.BROWSER }} -- --env remote --headless -v
51+
tox -e py${{ env.TOX_ENV }}-selenium-${{ env.BROWSER }} -- --env remote --headless -v --sv

tests/conftest.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
from tests.adata.pytest_utils import skip_platform
2222

2323

24-
# Suppress deprecation warnings
25-
warnings.filterwarnings("ignore", category=DeprecationWarning)
26-
27-
2824
dyatel_logs_settings()
2925

3026

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://tox.wiki/en/latest/upgrading.html#reuse-of-environments
44

55
[pytest]
6-
addopts = -p no:warnings -p no:logging --strict-markers
6+
addopts = -p no:warnings -p no:logging --strict-markers ignore::DeprecationWarning
77
markers =
88
xfail_platform: xfail for specific platform: ios, android, desktop
99
skip_platform: skip specific platform

0 commit comments

Comments
 (0)