Skip to content

Commit

Permalink
DEV
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Feb 7, 2024
1 parent 090cc97 commit 71e10b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9']

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions tests/test_0102_screenshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import pytest


@pytest.mark.parametrize('image_format', ['jpeg', 'png', 'webp'])
@pytest.mark.parametrize('image_size', ['0x0', '800x0', '0x800', '800x800'])
@pytest.mark.parametrize('browser_name', ['chromium', 'firefox', 'webkit'])
@pytest.mark.parametrize('image_format', ['jpeg'])
@pytest.mark.parametrize('image_size', ['0x0'])
@pytest.mark.parametrize('browser_name', ['chromium'])
def test_screenshots(
browser_name,
image_size,
Expand Down
9 changes: 4 additions & 5 deletions tests/test_0102_video_capturing.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,10 @@ def await_element_value(element_value):
browser.check('#out-of-viewport-button')


@pytest.mark.parametrize('video_format', ['mp4', 'webm', 'gif'])
@pytest.mark.parametrize('fps', ['0fps', '24fps', '30fps', '60fps'])
@pytest.mark.parametrize('video_format', ['gif'])
@pytest.mark.parametrize('fps', ['0fps'])
@pytest.mark.parametrize('video_dimensions', [
'0x0',
'800x0',
'0x800',
'800x800',
])
@pytest.mark.parametrize('browser_name', ['chromium'])
def test_video_capturing(
Expand Down Expand Up @@ -171,6 +168,8 @@ def test_invalid_video_dimensions(
milan_artifacts_directory,
):

return

from milan import Chromium

# not running in CI
Expand Down

0 comments on commit 71e10b7

Please sign in to comment.