@@ -44,23 +44,25 @@ jobs:
44
44
python -m pip install --upgrade pip
45
45
pip install tox
46
46
47
- - name : Setup Firefox
48
- if : matrix.os == 'ubuntu-latest'
49
- uses : browser-actions/setup-firefox@latest
50
- with :
51
- firefox-version : latest
52
-
53
- - name : Setup Geckodriver
54
- if : matrix.os == 'ubuntu-latest'
55
- uses : browser-actions/setup-geckodriver@latest
56
-
57
- - name : Setup Chrome
58
- uses : browser-actions/setup-chrome@latest
59
- with :
60
- chrome-version : stable
61
-
62
- - name : Setup Chromedriver
63
- uses : nanasess/setup-chromedriver@master
47
+ - name : Spin up Grid
48
+ run : ./start
49
+ # - name: Setup Firefox
50
+ # if: matrix.os == 'ubuntu-latest'
51
+ # uses: browser-actions/setup-firefox@latest
52
+ # with:
53
+ # firefox-version: latest
54
+ #
55
+ # - name: Setup Geckodriver
56
+ # if: matrix.os == 'ubuntu-latest'
57
+ # uses: browser-actions/setup-geckodriver@latest
58
+ #
59
+ # - name: Setup Chrome
60
+ # uses: browser-actions/setup-chrome@latest
61
+ # with:
62
+ # chrome-version: stable
63
+ #
64
+ # - name: Setup Chromedriver
65
+ # uses: nanasess/setup-chromedriver@master
64
66
65
67
- name : Cache tox environments
66
68
uses : actions/cache@v3
70
72
71
73
- name : Test
72
74
if : matrix.os == 'ubuntu-latest'
73
- run : tox -e ${{ matrix.tox_env }}
75
+ run : tox -e ${{ matrix.tox_env }} -- --html={envlogdir}/report.html --self-contained-html
74
76
75
77
- name : Test (skip firefox on windows)
76
78
if : matrix.os == 'windows-latest'
0 commit comments