File tree 2 files changed +18
-10
lines changed
2 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,18 @@ jobs:
85
85
fail-fast : false
86
86
matrix :
87
87
include :
88
+ - browser : chrome
89
+ os : ubuntu
90
+ - browser : edge
91
+ os : ubuntu
88
92
- browser : firefox
93
+ os : ubuntu
89
94
with :
90
- name : Integration Tests (remote, ${{ matrix.browser }})
95
+ name : Integration Tests (remote, ${{ matrix.browser }}, ${{ matrix.os }} )
91
96
browser : ${{ matrix.browser }}
97
+ os : ${{ matrix.os }}
92
98
cache-key : py-remote-${{ matrix.browser }}
93
- run : bazel test --local_test_jobs 1 -- flaky_test_attempts 3 //py:test-remote
99
+ run : bazel test --flaky_test_attempts 3 //py:test-remote
94
100
95
101
browser-tests :
96
102
name : Browser Tests
@@ -103,10 +109,17 @@ jobs:
103
109
- browser : safari
104
110
os : macos
105
111
- browser : chrome
106
- os : macos
112
+ os : ubuntu
113
+ - browser : edge
114
+ os : ubuntu
115
+ - browser : firefox
116
+ os : ubuntu
107
117
with :
108
- name : Integration Tests (${{ matrix.browser }}, ${{ matrix.os }})
118
+ name : Integration Tests (local, ${{ matrix.browser }}, ${{ matrix.os }})
109
119
browser : ${{ matrix.browser }}
110
120
os : ${{ matrix.os }}
111
121
cache-key : py-browser-${{ matrix.browser }}
112
- run : bazel test --flaky_test_attempts 3 //py:test-${{ matrix.browser }}
122
+ run : |
123
+ bazel test --flaky_test_attempts 3 //py:common-${{ matrix.browser }}
124
+ bazel test --flaky_test_attempts 3 //py:common-${{ matrix.browser }}-bidi
125
+ bazel test --flaky_test_attempts 3 //py:test-${{ matrix.browser }}
Original file line number Diff line number Diff line change @@ -69,11 +69,6 @@ BROWSERS = {
69
69
"data" : firefox_data ,
70
70
"tags" : COMMON_TAGS + ["firefox" ],
71
71
},
72
- "ie" : {
73
- "args" : ["--driver=ie" ],
74
- "data" : [],
75
- "tags" : COMMON_TAGS + ["ie" , "skip-remote" ],
76
- },
77
72
"safari" : {
78
73
"args" : ["--driver=safari" ],
79
74
"data" : [],
You can’t perform that action at this time.
0 commit comments