Removed dir block from pipeline

This commit is contained in:
Marcin-Ramotowski 2025-06-07 13:54:56 +00:00
parent 8887f1b2bd
commit 63d8eeb03e

3
Jenkinsfile vendored
View File

@ -14,7 +14,6 @@ pipeline {
stage('Code Tests') {
steps {
container('python') {
dir('api') {
sh '''
cd api
python3 -m venv env
@ -22,7 +21,7 @@ pipeline {
pip install -r requirements.txt pytest
python3 -m pytest --junit-xml=pytest_junit.xml
'''
}
}
}
post {