From de914e01a9e3e768a00caaaa71c22adccaa731dd Mon Sep 17 00:00:00 2001 From: Hui Lan Date: Mon, 8 Feb 2021 21:42:36 +0800 Subject: Jenkinsfile: add two command-line arguments -v -s to pytest. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b8c1c04..ea23212 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 'python3 -m pytest ./app/test' + sh 'python3 -m pytest -v -s ./app/test' } } stage('DeployIt') { -- cgit v1.2.1