Commit 4e52ef85 authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Remove debug code and increase timeout a bit

parent fb234b33
Loading
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -1099,7 +1099,7 @@ test-long-self-test:
    - .test-job-linux
  stage: compare
  resource_group: ivas-long-self-test-resource
  timeout: "40 minutes"
  timeout: "50 minutes"
  rules:
    - if: $CI_PIPELINE_SOURCE == 'web' && $MANUAL_PIPELINE_TYPE == 'test-long-self-test'
  script:
@@ -1141,13 +1141,6 @@ test-long-self-test:
    ### run pytest self-test using long test vectors
    - exit_code=0
    - python3 -m pytest $TESTS_DIR_CODEC_BE_ON_MR/test_param_file.py -v --param_file scripts/config/self_test_ltv.prm --html=report-ltv.html --self-contained-html --junit-xml=report-junit-ltv.xml || exit_code=$?

    ### Some debug code
    - ls -la
    - ls -la scripts/
    - ls -la tests/
    - ls -la "$TESTS_DIR_CODEC_BE_ON_MR"/

    - zero_errors=$(cat report-junit-ltv.xml | grep -c 'errors="0"') || true

    - if [ $zero_errors != 1 ]; then echo "Run errors encountered!"; exit $EXIT_CODE_FAIL; fi