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) 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