Skip to content

Commit 7209c39

Browse files
committed
[ci] Update python tests
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 0338677 commit 7209c39

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

.github/workflows/ci-python.yml

+18-5
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,18 @@ jobs:
8585
fail-fast: false
8686
matrix:
8787
include:
88+
- browser: chrome
89+
os: ubuntu
90+
- browser: edge
91+
os: ubuntu
8892
- browser: firefox
93+
os: ubuntu
8994
with:
90-
name: Integration Tests (remote, ${{ matrix.browser }})
95+
name: Integration Tests (remote, ${{ matrix.browser }}, ${{ matrix.os }})
9196
browser: ${{ matrix.browser }}
97+
os: ${{ matrix.os }}
9298
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
94100

95101
browser-tests:
96102
name: Browser Tests
@@ -103,10 +109,17 @@ jobs:
103109
- browser: safari
104110
os: macos
105111
- browser: chrome
106-
os: macos
112+
os: ubuntu
113+
- browser: edge
114+
os: ubuntu
115+
- browser: firefox
116+
os: ubuntu
107117
with:
108-
name: Integration Tests (${{ matrix.browser }}, ${{ matrix.os }})
118+
name: Integration Tests (local, ${{ matrix.browser }}, ${{ matrix.os }})
109119
browser: ${{ matrix.browser }}
110120
os: ${{ matrix.os }}
111121
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 }}

py/private/browsers.bzl

-5
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ BROWSERS = {
6969
"data": firefox_data,
7070
"tags": COMMON_TAGS + ["firefox"],
7171
},
72-
"ie": {
73-
"args": ["--driver=ie"],
74-
"data": [],
75-
"tags": COMMON_TAGS + ["ie", "skip-remote"],
76-
},
7772
"safari": {
7873
"args": ["--driver=safari"],
7974
"data": [],

0 commit comments

Comments
 (0)