summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHui Lan <lanhui@zjnu.edu.cn>2021-02-04 23:51:24 +0800
committerHui Lan <lanhui@zjnu.edu.cn>2021-02-04 23:51:24 +0800
commit38533b6e1a0106cea0a50871c7c23b1075b40c1a (patch)
tree8a303dd2ec97e5bcb1ae8b97552f71b2f536165d
parent795d572f1903547fb8dbbd35d64966d95f5a8f35 (diff)
Jenkinsfile: install modules in quiet mode.
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 1fa9540..95dd5ae 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -20,8 +20,8 @@ pipeline {
steps {
echo 'Testing..'
sh 'sudo docker run -d -p 4444:4444 selenium/standalone-chrome'
- sh 'pip3 install pytest'
- sh 'pip3 install selenium'
+ sh 'pip3 install pytest -U -q'
+ sh 'pip3 install selenium -U -q'
sh 'python3 -m pytest ./app/test/test_signup.py'
}