Skip to content

Commit

Permalink
[java] Not linting remote tests.
Browse files Browse the repository at this point in the history
[run java]
  • Loading branch information
diemol committed Jun 23, 2022
1 parent 009e784 commit d09259a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/private/selenium_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ def selenium_test(name, test_class, size = "medium", browsers = BROWSERS.keys(),
"-Dselenium.browser.remote=true",
"-Dselenium.browser.remote.path=$(location @selenium//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar)",
],
tags = BROWSERS[browser]["tags"] + tags + ["remote"],
# No need to lint remote tests as the code for non-remote is the same and they get linted
tags = BROWSERS[browser]["tags"] + tags + ["remote", "no-lint"],
data = BROWSERS[browser]["data"] + data + [
"@selenium//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar",
],
Expand Down

0 comments on commit d09259a

Please sign in to comment.