-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[rb] Support running Ruby tests in RBE for Chrome
- Loading branch information
Showing
29 changed files
with
246 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
load("@rules_ruby//ruby:defs.bzl", "rb_test") | ||
load("//rb/spec/integration:configuration.bzl", "ENV", "TAGS") | ||
|
||
package(default_visibility = ["//rb:__subpackages__"]) | ||
load("//rb/spec:tests.bzl", "rb_integration_test") | ||
|
||
[ | ||
rb_test( | ||
rb_integration_test( | ||
name = file[:-8], | ||
size = "large", | ||
srcs = [file], | ||
args = ["rb/spec/"], | ||
env = ENV, | ||
main = "@bundle//bin:rspec", | ||
tags = TAGS, | ||
deps = [ | ||
"//rb/lib/selenium/webdriver:chrome", | ||
"//rb/spec/integration/selenium/webdriver:spec_helper", | ||
], | ||
deps = ["//rb/lib/selenium/webdriver:chrome"], | ||
) | ||
for file in glob(["*_spec.rb"]) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
load("@rules_ruby//ruby:defs.bzl", "rb_test") | ||
load("//rb/spec/integration:configuration.bzl", "ENV", "TAGS") | ||
|
||
package(default_visibility = ["//rb:__subpackages__"]) | ||
load("//rb/spec:tests.bzl", "rb_integration_test") | ||
|
||
[ | ||
rb_test( | ||
rb_integration_test( | ||
name = file[:-8], | ||
size = "large", | ||
srcs = [file], | ||
args = ["rb/spec/"], | ||
env = ENV, | ||
main = "@bundle//bin:rspec", | ||
tags = TAGS, | ||
deps = [ | ||
"//rb/lib/selenium/webdriver:edge", | ||
"//rb/spec/integration/selenium/webdriver:spec_helper", | ||
], | ||
deps = ["//rb/lib/selenium/webdriver:edge"], | ||
) | ||
for file in glob(["*_spec.rb"]) | ||
] |
17 changes: 3 additions & 14 deletions
17
rb/spec/integration/selenium/webdriver/firefox/BUILD.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
load("@rules_ruby//ruby:defs.bzl", "rb_test") | ||
load("//rb/spec/integration:configuration.bzl", "ENV", "TAGS") | ||
|
||
package(default_visibility = ["//rb:__subpackages__"]) | ||
load("//rb/spec:tests.bzl", "rb_integration_test") | ||
|
||
[ | ||
rb_test( | ||
rb_integration_test( | ||
name = file[:-8], | ||
size = "large", | ||
srcs = [file], | ||
args = ["rb/spec/"], | ||
env = ENV, | ||
main = "@bundle//bin:rspec", | ||
tags = TAGS, | ||
deps = [ | ||
"//rb/lib/selenium/webdriver:firefox", | ||
"//rb/spec/integration/selenium/webdriver:spec_helper", | ||
], | ||
deps = ["//rb/lib/selenium/webdriver:firefox"], | ||
) | ||
for file in glob(["*_spec.rb"]) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
load("@rules_ruby//ruby:defs.bzl", "rb_test") | ||
load("//rb/spec/integration:configuration.bzl", "ENV", "TAGS") | ||
|
||
package(default_visibility = ["//rb:__subpackages__"]) | ||
load("//rb/spec:tests.bzl", "rb_integration_test") | ||
|
||
[ | ||
rb_test( | ||
rb_integration_test( | ||
name = file[:-8], | ||
size = "large", | ||
srcs = [file], | ||
args = ["rb/spec/"], | ||
env = ENV, | ||
main = "@bundle//bin:rspec", | ||
tags = TAGS, | ||
deps = [ | ||
"//rb/lib/selenium/webdriver:remote", | ||
"//rb/spec/integration/selenium/webdriver:spec_helper", | ||
], | ||
deps = ["//rb/lib/selenium/webdriver:remote"], | ||
) | ||
for file in glob(["*_spec.rb"]) | ||
] |
Oops, something went wrong.