Commit 436a28dc authored by norvell's avatar norvell
Browse files

Fix calls to run_cmd

parent eb96c3a4
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ import pyaudio3dtools


def run_encoder(
    test_info,
    bitrate: int,
    sampling_rate: int,
    input_file: str,
@@ -88,10 +89,11 @@ def run_encoder(
        str(output_file),
    ]

    run_cmd(cmd)
    run_cmd(cmd, test_info)


def run_decoder(
    test_info,
    output_config: str,
    output_sampling_rate: int,
    input_bitstream_path: Path,
@@ -125,7 +127,7 @@ def run_decoder(
        str(output_path),
    ]

    run_cmd(cmd)
    run_cmd(cmd, test_info)


def get_option_list_str(option_list):
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ from typing import Tuple
import numpy as np
import pytest

from tests.renderer.utils import check_BE, run_cmd, run_ivas_isar_enc_cmd, run_ivas_isar_dec_cmd, run_isar_post_rend_cmd, run_isar_ext_rend_cmd
from tests.renderer.utils import check_BE, run_ivas_isar_enc_cmd, run_ivas_isar_dec_cmd, run_isar_post_rend_cmd, run_isar_ext_rend_cmd
from tests.split_rendering.constants import *

sys.path.append(SCRIPTS_DIR)