From d5258e733a8345cfe4dd1768690b5caf833252ef Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Wed, 2 Oct 2024 09:37:01 +0200 Subject: [PATCH] Fix problem with environment --- tests/API-dhcp/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/API-dhcp/Jenkinsfile b/tests/API-dhcp/Jenkinsfile index 2256754..01256c0 100644 --- a/tests/API-dhcp/Jenkinsfile +++ b/tests/API-dhcp/Jenkinsfile @@ -31,7 +31,7 @@ pipeline { echo 'Create Python venv to work with robotframework' sh ''' python3 -m venv robotframework - source venv/bin/activate + . robotframework/bin/activate pip install -r requirements.txt '''