Skip to content

Commit d88fe49

Browse files
committed
Update Azure Pipelines
1 parent 0d77612 commit d88fe49

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

azure-pipelines.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
- job: 'Test'
1010
pool:
11-
vmImage: 'Ubuntu-16.04'
11+
vmImage: 'Ubuntu-18.04'
1212
strategy:
1313
matrix:
1414
Python27:
@@ -19,7 +19,9 @@ jobs:
1919
python.version: '3.6'
2020
Python37:
2121
python.version: '3.7'
22-
maxParallel: 4
22+
Python38:
23+
python.version: '3.8'
24+
maxParallel: 5
2325

2426
steps:
2527
- task: UsePythonVersion@0
@@ -59,6 +61,9 @@ jobs:
5961
- script: python -m pytest examples/my_first_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
6062
displayName: 'Run pytest my_first_test.py --browser=chrome --headless'
6163

64+
- script: python -m pytest examples/test_demo_site.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
65+
displayName: 'Run pytest test_demo_site.py --browser=chrome --headless'
66+
6267
#- script: python -m pytest examples/test_inspect_html.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
6368
# displayName: 'Run pytest test_inspect_html.py --browser=chrome --headless'
6469

0 commit comments

Comments
 (0)