summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 08ac579..5e2b037 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -22,10 +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/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_add_word.py'
+ sh 'pytest ./app/test'
}
}
stage('DeployIt') {