From 24ffed751fea999417b6f2128b51bc35b52ff2ed Mon Sep 17 00:00:00 2001 From: Lan Hui Date: Wed, 9 Jun 2021 08:33:22 +0800 Subject: [PATCH] Jenkinsfile: correct command line argument. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c213a3f..f3151d7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { sh 'sudo docker run -d -p 4444:4444 selenium/standalone-chrome' sh 'pip3 install pytest -U -q' sh 'pip3 install selenium -U -q' - sh 'pytest -v -s –html=EnglishPalTestReport.html ./app/test' + sh 'pytest -v -s -–html=EnglishPalTestReport.html ./app/test' } } stage('DeployIt') {