加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
azure-pipelines.yml 2.54 KB
一键复制 编辑 原始数据 按行查看 历史
Arronlong 提交于 2020-07-05 20:36 . init
# 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-18.04'
strategy:
matrix:
Python27:
python.version: '2.7'
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
maxParallel: 5
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: python -m pip install --upgrade pip && pip --version
displayName: 'Install/upgrade pip'
- script: python -m pip install seleniumbase
displayName: 'Verify install from PyPI'
- script: python -m pip install -r requirements.txt --upgrade
displayName: 'Install dependencies'
- script: python setup.py install
displayName: 'Install SeleniumBase'
- script: |
sudo apt install google-chrome-stable
sudo apt-get install firefox
displayName: 'Install Chrome and Firefox'
- script: |
seleniumbase install chromedriver
displayName: 'Install chromedriver'
- script: |
echo "def test_1(): pass" > nothing.py
pytest nothing.py
displayName: 'Make sure pytest is working'
- script: python -m pytest examples/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
displayName: 'Run pytest boilerplate_test.py --browser=chrome --headless'
- script: python -m pytest examples/my_first_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
displayName: 'Run pytest my_first_test.py --browser=chrome --headless'
- script: python -m pytest examples/test_demo_site.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
displayName: 'Run pytest test_demo_site.py --browser=chrome --headless'
#- script: python -m pytest examples/test_inspect_html.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
# displayName: 'Run pytest test_inspect_html.py --browser=chrome --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'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化