From 17162027b6a47c62566bcdcddcf38585b68ead68 Mon Sep 17 00:00:00 2001 From: Marcin-Ramotowski Date: Sat, 7 Jun 2025 14:57:35 +0000 Subject: [PATCH] Removed unnecessary post cleanup --- Jenkinsfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e559f42..25f04d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,6 @@ pipeline { container('python') { dir('api') { sh ''' - cd api python3 -m venv env source env/bin/activate pip install -r requirements.txt pytest @@ -54,14 +53,9 @@ pipeline { } post { always { - junit testResults: '**/*pytest_junit.xml' + junit testResults: '**/*goss_junit.xml' } } } } - post { - cleanup { - script { cleanWs() } - } - } }