Jenkinsfile selenium test step

This commit is contained in:
Artur Nowakowski 2019-12-09 11:06:20 +01:00
parent a25033ab1e
commit da1f5fe652
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -25,10 +25,10 @@ node {
} }
} }
dir('target/selenium'){ dir('target/selenium'){
stage("Frontend: Test Selenium") {
docker.image('joyzoursky/python-chromedriver:3.7-selenium').inside{ docker.image('joyzoursky/python-chromedriver:3.7-selenium').inside{
{ sh 'python3 test.py' } stage("Frontend: Test Selenium") {
} sh 'python3 test.py'
}
} }
} }
} }