Skip to content

Commit 635f86c

Browse files
committed
[bazel] Fix up python data deps so remote builds work
1 parent fca6d69 commit 635f86c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci-remote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
with:
1212
name: Cache
1313
cache-key: java
14-
run: bazel test --config=remote-ci --test_size_filters=small --keep_going //java/...
14+
run: bazel test --config=remote-ci --test_size_filters=small --keep_going //java/... //py/...

py/private/browsers.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ headless_args = select({
1616
chrome_args = select({
1717
"@selenium//common:use_pinned_linux_chrome": [
1818
"--driver-binary=$(location @linux_chromedriver//:chromedriver)",
19-
"--browser-binary=$(location @linux_chrome//:chrome-linux)/chrome",
19+
"--browser-binary=$(location @linux_chrome//:chrome-linux/chrome)",
2020
],
2121
"@selenium//common:use_pinned_macos_chrome": [
2222
"--driver-binary=$(location @mac_chromedriver//:chromedriver)",
@@ -42,7 +42,7 @@ edge_args = select({
4242
firefox_args = select({
4343
"@selenium//common:use_pinned_linux_firefox": [
4444
"--driver-binary=$(location @linux_geckodriver//:geckodriver)",
45-
"--browser-binary=$(location @linux_firefox//:firefox)/firefox",
45+
"--browser-binary=$(location @linux_firefox//:firefox/firefox)",
4646
],
4747
"@selenium//common:use_pinned_macos_firefox": [
4848
"--driver-binary=$(location @mac_geckodriver//:geckodriver)",

0 commit comments

Comments
 (0)