Commit 4d5d7beb authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

fixing test_lab_m1 not running in the master branch

parent 1f35c813
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -40,9 +40,11 @@ lint_lab_m1:
  needs: [compile_lab_m1]
  tags: [cppcheck]

# don't run the test in the master branch
test_lab_m1:
  stage: test
  <<: *common_rules_m1
  rules:
    - if: '$CI_COMMIT_BRANCH != "master" && $CI_COMMIT_TAG == null'
  script:
    - echo "Testing Lab -1";
    - |
@@ -51,6 +53,4 @@ test_lab_m1:
        exit 1;
      fi
  needs: [lint_lab_m1]
  except:
    - master
  tags: [shell]
 No newline at end of file