File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -40,18 +40,16 @@ jobs:
40
40
pip install flake8
41
41
# Stop the build if there are flake8 issues
42
42
flake8 . --count --show-source --statistics --exclude=temp
43
- - name : Install Chrome and Firefox
43
+ - name : Install Chrome
44
44
run : |
45
45
sudo apt install google-chrome-stable
46
- sudo apt-get install firefox
47
46
- name : Check the console scripts interface
48
47
run : |
49
48
seleniumbase
50
49
sbase
51
- - name : Install chromedriver and geckodriver (Firefox Webdriver)
50
+ - name : Install chromedriver
52
51
run : |
53
52
seleniumbase install chromedriver
54
- seleniumbase install geckodriver
55
53
- name : Make sure pytest is working
56
54
run : |
57
55
echo "def test_1(): pass" > nothing.py
87
85
- name : Run pytest examples/test_inspect_html.py --browser=chrome --headless
88
86
run : |
89
87
pytest examples/test_inspect_html.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
90
- - name : Run pytest examples/test_mfa_login.py --browser=firefox --headless
91
- run : |
92
- pytest examples/test_mfa_login.py --browser=firefox --headless -v -s --junit-xml=junit/test-results.xml
93
- - name : Run pytest examples/test_mfa_login.py --browser=firefox --xvfb
94
- run : |
95
- pytest examples/test_mfa_login.py --browser=firefox --xvfb -v -s --junit-xml=junit/test-results.xml
96
88
- name : Run behave examples/behave_bdd/features/calculator.feature -D rs -D crumbs -D xvfb
97
89
run : |
98
90
behave examples/behave_bdd/features/calculator.feature -D rs -D crumbs -D xvfb -T -k
You can’t perform that action at this time.
0 commit comments