diff --git a/Jenkinsfile.cd b/Jenkinsfile.cd index d766f1b..33446d6 100644 --- a/Jenkinsfile.cd +++ b/Jenkinsfile.cd @@ -36,32 +36,6 @@ pipeline { stages { - /* ========================= - TESTS - ========================= */ - - stage('Backend: test (main)') { - agent { - docker { - image 'python:3.11-slim' - args '-u root' - } - } - steps { - dir('backend') { - sh ''' - set -e - python -m venv .venv - . .venv/bin/activate - pip install --upgrade pip - pip install -r requirements-dev.txt - pytest - ''' - } - } - } - - /* ========================= DOCKER BUILD ========================= */