@@ -14,6 +14,9 @@ compile_pip_requirements(
1414 name = "requirements" ,
1515 requirements_in = ":requirements.txt" ,
1616 requirements_txt = ":requirements_lock.txt" ,
17+ tags = [
18+ "no-rbe" ,
19+ ],
1720)
1821
1922SE_VERSION = "4.10.0"
@@ -352,10 +355,12 @@ py_test_suite(
352355 args = [
353356 "--instafail" ,
354357 "--driver=chrome" ,
355- ],
358+ ] + BROWSERS ["chrome" ]["args" ],
359+ data = BROWSERS ["chrome" ]["data" ],
360+ env_inherit = ["DISPLAY" ],
356361 tags = [
357362 "no-sandbox" ,
358- ],
363+ ] + BROWSERS [ "chrome" ][ "tags" ] ,
359364 deps = [
360365 ":init-tree" ,
361366 ":selenium" ,
@@ -379,6 +384,7 @@ py_test_suite(
379384 "--headless=true" ,
380385 ],
381386 tags = [
387+ "no-rbe" ,
382388 "no-sandbox" ,
383389 ],
384390 deps = [
@@ -401,6 +407,7 @@ py_test_suite(
401407 "--driver=edge" ,
402408 ],
403409 tags = [
410+ "no-rbe" ,
404411 "no-sandbox" ,
405412 ],
406413 deps = [
@@ -422,10 +429,12 @@ py_test_suite(
422429 args = [
423430 "--instafail" ,
424431 "--driver=firefox" ,
425- ],
432+ ] + BROWSERS ["firefox" ]["args" ],
433+ data = BROWSERS ["firefox" ]["data" ],
434+ env_inherit = ["DISPLAY" ],
426435 tags = [
427436 "no-sandbox" ,
428- ],
437+ ] + BROWSERS [ "firefox" ][ "tags" ] ,
429438 deps = [
430439 ":init-tree" ,
431440 ":selenium" ,
@@ -448,6 +457,7 @@ py_test_suite(
448457 "//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar" ,
449458 ],
450459 tags = [
460+ "no-rbe" ,
451461 "no-sandbox" ,
452462 ],
453463 deps = [
@@ -470,6 +480,7 @@ py_test_suite(
470480 "--driver=ie" ,
471481 ],
472482 tags = [
483+ "no-rbe" ,
473484 "no-sandbox" ,
474485 ],
475486 deps = [
@@ -493,6 +504,7 @@ py_test_suite(
493504 ],
494505 tags = [
495506 "exclusive-if-local" ,
507+ "no-rbe" ,
496508 "no-sandbox" ,
497509 ],
498510 deps = [
@@ -517,6 +529,7 @@ py_test_suite(
517529 ],
518530 tags = [
519531 "exclusive-if-local" ,
532+ "no-rbe" ,
520533 "no-sandbox" ,
521534 ],
522535 deps = [
@@ -541,6 +554,7 @@ py_test_suite(
541554 ],
542555 tags = [
543556 "exclusive-if-local" ,
557+ "no-rbe" ,
544558 "no-sandbox" ,
545559 ],
546560 deps = [
0 commit comments