Commit ad601fc5 authored by norvell's avatar norvell
Browse files

Add default bin path for test_26252.py

parent 1ac703c1
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1290,7 +1290,7 @@ ivas-conformance:
    # Test run generated scripts in testvec
    - cd testvec    
    - exit_code=0    
    - python3 -m pytest conformance-test/test_26252.py --encoder_path bin/IVAS_cod --decoder_path bin/IVAS_dec --renderer_path bin/IVAS_rend --junit-xml=report-junit.xml --html=report.html --self-contained-html || exit_code=$?
    - python3 -m pytest conformance-test/test_26252.py --junit-xml=report-junit.xml --html=report.html --self-contained-html || exit_code=$?
    - zero_errors=$(cat report-junit.xml | grep -c 'errors="0"') || true
    - mv report.html ..
    - mv report-junit.xml ..
+3 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ def pytest_addoption(parser):
        help="path to encoder binary IVAS_cod(.exe)",
        required=True,
        type=pathlib.Path,
        default='./bin/IVAS_cod',
    )
    parser.addoption(
        "--decoder_path",
@@ -46,6 +47,7 @@ def pytest_addoption(parser):
        help="path to decoder binary IVAS_dec(.exe)",
        required=True,
        type=pathlib.Path,
        default='./bin/IVAS_dec',
    )
    parser.addoption(
        "--renderer_path",
@@ -53,6 +55,7 @@ def pytest_addoption(parser):
        help="path to renderer binary IVAS_rend(.exe)",
        required=True,
        type=pathlib.Path,
        default='./bin/IVAS_rend',
    )