forked from seleniumbase/SeleniumBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
102 lines (79 loc) · 3.03 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# 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-22.04'
strategy:
matrix:
Python3_7:
python.version: '3.7'
Python3_8:
python.version: '3.8'
Python3_9:
python.version: '3.9'
Python3_10:
python.version: '3.10'
Python3_11:
python.version: '3.11'
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 -m pip install -e .
displayName: 'Install SeleniumBase'
- script: |
sudo apt install google-chrome-stable
displayName: 'Install Chrome'
#- script: |
# sudo apt-get install firefox
# displayName: 'Install Firefox'
- script: |
seleniumbase
sbase
displayName: 'Check the console scripts interface'
- 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/unit_tests/verify_framework.py
# displayName: 'Run pytest verify_framework.py'
- 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/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
# displayName: 'Run pytest boilerplate_test.py --browser=firefox --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/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_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-22.04'
# steps:
# - task: UsePythonVersion@0
# inputs:
# versionSpec: '3.x'
# architecture: 'x64'
# - script: python setup.py sdist
# displayName: 'Build sdist'