From 3ef96ae447fc31655533ccf993b708f109626532 Mon Sep 17 00:00:00 2001 From: Lan Hui Date: Wed, 9 Jun 2021 08:43:50 +0800 Subject: [PATCH] Jenkinsfile: correct command line argument 2. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f3151d7..434c00f 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') {