diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-08 21:42:36 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-08 21:42:36 +0800 |
commit | de914e01a9e3e768a00caaaa71c22adccaa731dd (patch) | |
tree | 0f6669ebc7825235eac6ae9c7acfda3b373a5e5c | |
parent | a8faa5076643107d4fa8ab408c251a43874a245b (diff) |
Jenkinsfile: add two command-line arguments -v -s to pytest.
-rw-r--r-- | Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
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') { |