Skip to content

Commit 6c00cd4

Browse files
committed
Simplify the Azure Pipelines script
1 parent 54cad4f commit 6c00cd4

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ jobs:
4545

4646
- script: |
4747
sudo apt install google-chrome-stable
48-
sudo apt-get install firefox
49-
displayName: 'Install Chrome and Firefox'
48+
displayName: 'Install Chrome'
49+
50+
#- script: |
51+
# sudo apt-get install firefox
52+
# displayName: 'Install Firefox'
5053

5154
- script: |
5255
seleniumbase
@@ -65,8 +68,11 @@ jobs:
6568
- script: python -m pytest examples/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
6669
displayName: 'Run pytest boilerplate_test.py --browser=chrome --headless'
6770

68-
- script: python -m pytest examples/test_demo_site.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
69-
displayName: 'Run pytest test_demo_site.py --browser=chrome --headless'
71+
#- script: python -m pytest examples/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
72+
# displayName: 'Run pytest boilerplate_test.py --browser=firefox --headless'
73+
74+
#- script: python -m pytest examples/test_demo_site.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
75+
# displayName: 'Run pytest test_demo_site.py --browser=chrome --headless'
7076

7177
#- script: python -m pytest examples/my_first_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
7278
# displayName: 'Run pytest my_first_test.py --browser=chrome --headless'

0 commit comments

Comments
 (0)