Update jenkinsfile.ci #30

Merged
husbando_enjoyer merged 13 commits from feature/main-UpdateJenkinsFileCi into main 2026-02-06 21:39:23 +01:00
Showing only changes of commit 1c572a30a0 - Show all commits

View File

@@ -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
========================= */