From 27556d149450fc9445a4aa6a15f4095369e2e880 Mon Sep 17 00:00:00 2001 From: Rebecca Kohlhaas <rebecca.kohlhaas@iws.uni-stuttgart.de> Date: Fri, 28 Jun 2024 15:41:34 +0000 Subject: [PATCH] Pipeline: removed additional test jobs. --- .gitlab-ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9bb07c56b..9dbdcbb67 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -76,22 +76,6 @@ unit-test-job: # This job runs in the test stage. - tests/**/* when: always - -example-test-job: - stage: test - script: - - pip install -e . - - python examples/analytical-function/example_analytical_function.py - - echo "Example `analytical-function` ran through." - when: always - -lint-test-job: # This job also runs in the test stage. - stage: test # It can run at the same time as unit-test-job (in parallel). - script: - - echo "Linting code... This will take about 10 seconds." - - sleep 10 - - echo "No lint issues found." - deploy-job: # This job runs in the deploy stage. stage: deploy # It only runs when *both* jobs in the test stage complete successfully. environment: production -- GitLab