Commit 0dd47e63 authored by Jan Kiene's avatar Jan Kiene
Browse files

only run P800-8 test and archive logs

parent 4a0605c8
Loading
Loading
Loading
Loading
Loading
+10 −5
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 @@ check_for_binaries:
# ------------------------------------

# test the format conversion only
test_audiotools_convert:
.test_audiotools_convert:
  stage: test
  tags:
    - linux
@@ -81,9 +81,14 @@ experiments:
    - *print-common-info
    - *get-codec-binaries
    - python3 -m pytest -n auto tests/test_experiments.py
  artifacts:
    paths:
      - experiments/selection/*/proc_output/*.log
    when: always
    expose_as: "experiments logs"

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

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

format:
.format:
  stage: analyze
  needs: []
  variables:
+22 −22
Original line number Diff line number Diff line
@@ -203,27 +203,27 @@ INPUT_CONFIG_FILES = [
]

INPUT_EXPERIMENT_NAMES = [
    "BS1534-1a",
    "BS1534-1b",
    "BS1534-2a",
    "BS1534-2b",
    "BS1534-3a",
    "BS1534-3b",
    "BS1534-4a",
    "BS1534-4b",
    "BS1534-5a",
    "BS1534-5b",
    "BS1534-6a",
    "BS1534-6b",
    "BS1534-7a",
    "BS1534-7b",
    "P800-1",
    "P800-2",
    "P800-3",
    "P800-4",
    "P800-5",
    "P800-6",
    "P800-7",
    # "BS1534-1a",
    # "BS1534-1b",
    # "BS1534-2a",
    # "BS1534-2b",
    # "BS1534-3a",
    # "BS1534-3b",
    # "BS1534-4a",
    # "BS1534-4b",
    # "BS1534-5a",
    # "BS1534-5b",
    # "BS1534-6a",
    # "BS1534-6b",
    # "BS1534-7a",
    # "BS1534-7b",
    # "P800-1",
    # "P800-2",
    # "P800-3",
    # "P800-4",
    # "P800-5",
    # "P800-6",
    # "P800-7",
    "P800-8",
    "P800-9",
    # "P800-9",
]