Skip to content

Commit d09259a

Browse files
committed
[java] Not linting remote tests.
[run java]
1 parent 009e784 commit d09259a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/private/selenium_test.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ def selenium_test(name, test_class, size = "medium", browsers = BROWSERS.keys(),
9999
"-Dselenium.browser.remote=true",
100100
"-Dselenium.browser.remote.path=$(location @selenium//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar)",
101101
],
102-
tags = BROWSERS[browser]["tags"] + tags + ["remote"],
102+
# No need to lint remote tests as the code for non-remote is the same and they get linted
103+
tags = BROWSERS[browser]["tags"] + tags + ["remote", "no-lint"],
103104
data = BROWSERS[browser]["data"] + data + [
104105
"@selenium//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar",
105106
],

0 commit comments

Comments
 (0)