Commit cc8cba1f authored by Jan Kiene's avatar Jan Kiene
Browse files

go back to old test settings

parent 67f395f2
Loading
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ stages:
# ------------------------------------
# check pre-conditions are met
# ------------------------------------
.check_for_binaries:
check_for_binaries:
  stage: check
  tags:
    - linux
@@ -64,7 +64,7 @@ stages:
# ------------------------------------

# test the format conversion only
.test_audiotools_convert:
test_audiotools_convert:
  stage: test
  tags:
    - linux
@@ -74,25 +74,22 @@ stages:

# run the test configs for the selection experiments
experiments:
  variables:
    GIT_STRATEGY: clone
  stage: test
  tags:
    - linux
  script:
    - rm -rf experiments/selection/*/proc_*/*
    - *print-common-info
    - *get-codec-binaries
    - python3 -m pytest tests/test_experiments.py --log-level ERROR | tee log.txt
    - python3 -m pytest tests/test_experiments.py -n auto | tee log.txt
  artifacts:
    paths:
      - experiments/selection/*/proc_output/*.log
      - log.txt
    when: always
    when: on_failure
    expire_in: 1 week

# run some test configs for item creation
.test_processing:
test_processing:
  stage: test
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -109,7 +106,7 @@ experiments:
# static analysis/formatting tests
# ------------------------------------

.lint:
lint:
  stage: analyze
  needs: []
  tags:
@@ -118,7 +115,7 @@ experiments:
  script:
    - flake8 --max-line-length 88 --extend-ignore=E203,E501,E741

.format:
format:
  stage: analyze
  needs: []
  variables: