summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHui Lan <lanhui@zjnu.edu.cn>2021-02-07 17:53:36 +0800
committerHui Lan <lanhui@zjnu.edu.cn>2021-02-07 17:53:36 +0800
commit26ef6867f2a3b41c4c6a7104e7454f7d060bb554 (patch)
tree6b03a7402b69fa817ecd3a8b4d1f6305571ebc7c
parentd58ddf02e184b5c04f4c5c3ccec71cd6a4570ce3 (diff)
Jenkinsfile: add test script test_add_word.py.
-rw-r--r--Jenkinsfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 9aaf0f7..08ac579 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -24,7 +24,8 @@ pipeline {
sh 'pip3 install selenium -U -q'
sh 'python3 -m pytest ./app/test/test_signup.py'
sh 'python3 -m pytest ./app/test/test_login.py'
- sh 'python3 -m pytest ./app/test/test_next_essay.py'
+ sh 'python3 -m pytest ./app/test/test_next_essay.py'
+ sh 'python3 -m pytest ./app/test/test_add_word.py'
}
}
stage('DeployIt') {