Commit 5271286f authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Remove defined stages from pipeline for now

parent 880a6187
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -3,9 +3,6 @@
# SAFETY_API_KEY:
#   Set to your API key for accessing up-to-date package security information

stages:
- prepare
- test

.python:
  image: python:3.9
@@ -22,7 +19,6 @@ stages:

Pin:
  # Pin dependencies in requirements.txt for reproducing pipeline results
  stage: prepare
  extends: [.python]
  script:
  - pip install --prefer-binary -e .
@@ -32,7 +28,6 @@ Pin:


Dependency Check:
  stage: test
  image: pyupio/safety:latest
  needs: [Pin]
  allow_failure: true
@@ -41,7 +36,7 @@ Dependency Check:


Quality Gate:
  stage: prepare
  stage: .pre
  image: docker.kodo.org.uk/ci-images/pre-commit:latest
  variables:
    PRE_COMMIT_HOME: $CI_PROJECT_DIR/cache/pre-commit
@@ -57,7 +52,6 @@ Quality Gate:


Unit Tests:
  stage: test
  extends: [.python]
  needs: [Pin]
  script: