SeleniumBase/azure-pipelines.yml

79 lines
2.1 KiB
YAML
Raw Normal View History

# Test the SeleniumBase Python package with Azure Pipelines.
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
- master
jobs:
- job: 'Test'
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python27:
python.version: '2.7'
2019-05-30 10:58:06 +08:00
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 4
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: python -m pip install --upgrade pip && pip install -r requirements.txt
displayName: 'Install dependencies'
2019-04-26 19:10:37 +08:00
- script: python setup.py develop
displayName: 'Install SeleniumBase'
2019-04-03 06:12:55 +08:00
- script: |
sudo apt install google-chrome-stable
sudo apt-get install firefox
displayName: 'Install Chrome and Firefox'
2019-04-03 06:12:55 +08:00
- script: |
seleniumbase install chromedriver
seleniumbase install geckodriver
displayName: 'Install chromedriver and geckodriver (Firefox Webdriver)'
2019-04-27 23:49:48 +08:00
- script: |
echo "def test_1(): pass" > nothing.py
pytest nothing.py
displayName: 'Make sure pytest is working'
2019-07-22 02:14:16 +08:00
- script: pytest examples/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
2019-04-06 05:01:17 +08:00
displayName: 'Run pytest boilerplate_test.py --browser=chrome --headless'
2019-07-22 02:14:16 +08:00
- script: pytest examples/my_first_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
2019-04-06 05:01:17 +08:00
displayName: 'Run pytest my_first_test.py --browser=chrome --headless'
2019-07-22 02:14:16 +08:00
- script: pytest examples/my_first_test.py --browser=firefox --headless -v -s --junit-xml=junit/test-results.xml
2019-04-06 05:01:17 +08:00
displayName: 'Run pytest my_first_test.py --browser=firefox --headless'
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-results.xml'
testRunTitle: 'Python $(python.version)'
condition: succeededOrFailed()
- job: 'Publish'
dependsOn: 'Test'
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
architecture: 'x64'
- script: python setup.py sdist
displayName: 'Build sdist'