Skip to content

Commit da3a110

Browse files
committed
Fix linter issues
Signed-off-by: Natalia Wochtman <natalia.wochtman@intel.com>
1 parent 1b500e4 commit da3a110

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

tests/validation/tests/single/st20p/format/test_format.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import pytest
77
from mtl_engine.media_files import yuv_files_422p10le, yuv_files_422rfc10
88

9+
910
@pytest.mark.nightly
1011
@pytest.mark.parametrize("file", yuv_files_422p10le.keys())
1112
def test_422p10le(

tests/validation/tests/single/st20p/fps/test_fps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import pytest
77
from mtl_engine.media_files import yuv_files_422rfc10
88

9+
910
@pytest.mark.nightly
1011
@pytest.mark.parametrize(
1112
"fps",

tests/validation/tests/single/st20p/integrity/test_integrity.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@
1919
"st20p_file, fps",
2020
[
2121
(yuv_files_422rfc10["Penguin_720p"], "p25"),
22-
pytest.param(yuv_files_422rfc10["Penguin_1080p"], "p25", marks=pytest.mark.nightly),
23-
pytest.param(yuv_files_422p10le["Penguin_720p"], "p25", marks=pytest.mark.nightly),
22+
pytest.param(
23+
yuv_files_422rfc10["Penguin_1080p"], "p25", marks=pytest.mark.nightly
24+
),
25+
pytest.param(
26+
yuv_files_422p10le["Penguin_720p"], "p25", marks=pytest.mark.nightly
27+
),
2428
(yuv_files_422p10le["Penguin_1080p"], "p25"),
2529
],
2630
)

tests/validation/tests/single/st20p/pacing/test_pacing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import pytest
77
from mtl_engine.media_files import yuv_files_422rfc10
88

9+
910
@pytest.mark.nightly
1011
@pytest.mark.parametrize("pacing", ["narrow", "wide", "linear"])
1112
@pytest.mark.parametrize("file", ["Crosswalk_720p", "ParkJoy_1080p", "Pedestrian_4K"])

tests/validation/tests/single/st20p/packing/test_packing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import pytest
77
from mtl_engine.media_files import yuv_files_422rfc10
88

9+
910
@pytest.mark.nightly
1011
@pytest.mark.parametrize("packing", ["GPM_SL", "GPM"])
1112
@pytest.mark.parametrize("file", ["Crosswalk_720p", "ParkJoy_1080p", "Pedestrian_4K"])

0 commit comments

Comments
 (0)