Jenkinsfile: correct command line argument.

pull/1/head
Lan Hui 2021-06-09 08:33:22 +08:00
parent a6328befc7
commit 24ffed751f
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -22,7 +22,7 @@ pipeline {
sh 'sudo docker run -d -p 4444:4444 selenium/standalone-chrome' sh 'sudo docker run -d -p 4444:4444 selenium/standalone-chrome'
sh 'pip3 install pytest -U -q' sh 'pip3 install pytest -U -q'
sh 'pip3 install selenium -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') { stage('DeployIt') {