Update Azure test pipeline

This commit is contained in:
Michael Mintz 2019-04-05 17:01:17 -04:00
parent a29ece60b1
commit 27bc5e3317
1 changed files with 7 additions and 4 deletions

View File

@ -38,11 +38,14 @@ jobs:
seleniumbase install geckodriver
displayName: 'Install chromedriver and geckodriver (Firefox Webdriver)'
- script: pytest examples/my_first_test.py --browser=chrome --headless -v -s --doctest-modules --junitxml=junit/test-results.xml
displayName: 'pytest examples/my_first_test.py --browser=chrome --headless'
- script: pytest examples/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junitxml=junit/test-results.xml
displayName: 'Run pytest boilerplate_test.py --browser=chrome --headless'
- script: pytest examples/my_first_test.py --browser=firefox --headless -v -s --doctest-modules --junitxml=junit/test-results.xml
displayName: 'pytest examples/my_first_test.py --browser=firefox --headless'
- script: pytest examples/my_first_test.py --browser=chrome --headless -v -s --junitxml=junit/test-results.xml
displayName: 'Run pytest my_first_test.py --browser=chrome --headless'
- script: pytest examples/my_first_test.py --browser=firefox --headless -v -s --junitxml=junit/test-results.xml
displayName: 'Run pytest my_first_test.py --browser=firefox --headless'
- task: PublishTestResults@2
inputs: