From ffe8052b2ad352c97e0e7cd0309c241c2dd33311 Mon Sep 17 00:00:00 2001 From: Mayeul Rousselet Date: Wed, 5 Feb 2025 11:40:27 +0100 Subject: [PATCH 1/2] Teest neww agent --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d395608..1a8e9d4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,7 @@ pipeline { options { disableConcurrentBuilds() } - agent { label 'dss-plugin-tests'} + agent { label 'dss-plugin-tests2'} environment { PLUGIN_INTEGRATION_TEST_INSTANCE="$HOME/instance_config.json" UNIT_TEST_FILES_STATUS_CODE = sh(script: 'ls ./tests/*/unit/test*', returnStatus: true) From 1693af8c346ea1d10aaca6a76c7b9a76ab27f7b0 Mon Sep 17 00:00:00 2001 From: Mayeul Rousselet Date: Wed, 5 Feb 2025 11:49:19 +0100 Subject: [PATCH 2/2] Removed DSS11 exclusion from the pytest CLI --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index beed286..a351793 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ integration-tests: source env/bin/activate; \ pip3 install --upgrade pip;\ pip install --no-cache-dir -r tests/python/integration/requirements.txt; \ - pytest tests/python/integration --alluredir=tests/allure_report --exclude-dss-targets="DSS11" || ret=$$?; exit $$ret \ + pytest tests/python/integration --alluredir=tests/allure_report || ret=$$?; exit $$ret \ ) tests: unit-tests integration-tests