Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
TMP_OUTPUT_FILE = "/tmp/output_anc.txt"


@pytest.mark.nightly
@pytest.mark.parametrize("fps", [24, 25, 30, 50, 60, 100, 120])
@pytest.mark.parametrize("file_size_kb", [10, 100])
@pytest.mark.parametrize("framebuff", [3])
Expand Down Expand Up @@ -77,6 +78,7 @@ def test_st40p_fps_size(
media_create.remove_file(TMP_OUTPUT_FILE, host=host)


@pytest.mark.nightly
@pytest.mark.parametrize("fps", [60])
@pytest.mark.parametrize("file_size_kb", [100])
@pytest.mark.parametrize("framebuff", [1, 3, 6, 12])
Expand Down Expand Up @@ -147,6 +149,7 @@ def test_st40p_framebuff(
media_create.remove_file(TMP_OUTPUT_FILE, host=host)


@pytest.mark.nightly
@pytest.mark.parametrize("fps", [24, 25, 30, 50, 60, 100, 120])
@pytest.mark.parametrize("framebuff", [1, 3, 6, 12])
def test_st40p_format_8331(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from mtl_engine import GstreamerApp


@pytest.mark.nightly
@pytest.mark.parametrize("audio_format", ["S8", "S16BE", "S24BE"])
@pytest.mark.parametrize("audio_channel", [1, 2, 6, 8])
@pytest.mark.parametrize("audio_rate", [44100, 48000, 96000])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from mtl_engine.media_files import gstreamer_formats


@pytest.mark.nightly
@pytest.mark.parametrize("file", gstreamer_formats.keys())
def test_video_format(
hosts,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from tests.xfail import SDBQ1971_conversion_v210_720p_error


@pytest.mark.nightly
@pytest.mark.parametrize("file", yuv_files.keys())
def test_video_resolutions(
hosts,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from mtl_engine.media_files import yuv_files_422p10le


@pytest.mark.nightly
@pytest.mark.parametrize("test_mode", ["multicast"])
@pytest.mark.parametrize("file", ["Penguin_1080p"])
@pytest.mark.parametrize("replicas", [1, 4])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import anc_files, audio_files, yuv_files


@pytest.mark.nightly
@pytest.mark.xfail(reason="the test environment is not yet ready to run PTP tests")
@pytest.mark.parametrize("test_mode", ["unicast", "multicast"])
@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import yuv_files


@pytest.mark.nightly
@pytest.mark.xfail(reason="the test environment is not yet ready to run PTP tests")
@pytest.mark.parametrize("test_mode", ["unicast", "multicast"])
@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
logger = logging.getLogger(__name__)


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from mtl_engine.media_files import yuv_files


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import anc_files, audio_files, yuv_files


@pytest.mark.nightly
@pytest.mark.parametrize("test_mode", ["unicast", "multicast"])
def test_rx_timing_mode(
hosts,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import yuv_files


@pytest.mark.nightly
@pytest.mark.parametrize(
"video_format",
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ def test_tx_rx_conversion(
rxtxapp.execute_test(config=config, build=build, test_time=test_time, host=host)


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[yuv_files_422rfc10["test_8K"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import yuv_files_422p10le


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
list(yuv_files_422p10le.values()),
Expand Down
1 change: 1 addition & 0 deletions tests/validation/tests/single/st22p/fps/test_fps.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import yuv_files_422p10le


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[yuv_files_422p10le["Penguin_1080p"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from mtl_engine.media_files import yuv_files_interlace


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
list(yuv_files_interlace.values()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from mtl_engine.media_files import yuv_files_422p10le


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[yuv_files_422p10le["Penguin_1080p"]],
Expand Down
1 change: 1 addition & 0 deletions tests/validation/tests/single/st41/dit/test_dit.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[st41_files["st41_p29_long_file"]],
Expand Down
1 change: 1 addition & 0 deletions tests/validation/tests/single/st41/fps/test_fps.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[st41_files["st41_p29_long_file"]],
Expand Down
1 change: 1 addition & 0 deletions tests/validation/tests/single/st41/k_bit/test_k_bit.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[st41_files["st41_p29_long_file"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[st41_files["st41_p29_long_file"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file",
[st41_files["st41_p29_long_file"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from mtl_engine.media_files import yuv_files


@pytest.mark.nightly
@pytest.mark.parametrize(
"media_file, replicas",
[
Expand Down