@@ -14,6 +14,9 @@ compile_pip_requirements(
14
14
name = "requirements" ,
15
15
requirements_in = ":requirements.txt" ,
16
16
requirements_txt = ":requirements_lock.txt" ,
17
+ tags = [
18
+ "no-rbe" ,
19
+ ],
17
20
)
18
21
19
22
SE_VERSION = "4.10.0"
@@ -352,10 +355,12 @@ py_test_suite(
352
355
args = [
353
356
"--instafail" ,
354
357
"--driver=chrome" ,
355
- ],
358
+ ] + BROWSERS ["chrome" ]["args" ],
359
+ data = BROWSERS ["chrome" ]["data" ],
360
+ env_inherit = ["DISPLAY" ],
356
361
tags = [
357
362
"no-sandbox" ,
358
- ],
363
+ ] + BROWSERS [ "chrome" ][ "tags" ] ,
359
364
deps = [
360
365
":init-tree" ,
361
366
":selenium" ,
@@ -379,6 +384,7 @@ py_test_suite(
379
384
"--headless=true" ,
380
385
],
381
386
tags = [
387
+ "no-rbe" ,
382
388
"no-sandbox" ,
383
389
],
384
390
deps = [
@@ -401,6 +407,7 @@ py_test_suite(
401
407
"--driver=edge" ,
402
408
],
403
409
tags = [
410
+ "no-rbe" ,
404
411
"no-sandbox" ,
405
412
],
406
413
deps = [
@@ -422,10 +429,12 @@ py_test_suite(
422
429
args = [
423
430
"--instafail" ,
424
431
"--driver=firefox" ,
425
- ],
432
+ ] + BROWSERS ["firefox" ]["args" ],
433
+ data = BROWSERS ["firefox" ]["data" ],
434
+ env_inherit = ["DISPLAY" ],
426
435
tags = [
427
436
"no-sandbox" ,
428
- ],
437
+ ] + BROWSERS [ "firefox" ][ "tags" ] ,
429
438
deps = [
430
439
":init-tree" ,
431
440
":selenium" ,
@@ -448,6 +457,7 @@ py_test_suite(
448
457
"//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar" ,
449
458
],
450
459
tags = [
460
+ "no-rbe" ,
451
461
"no-sandbox" ,
452
462
],
453
463
deps = [
@@ -470,6 +480,7 @@ py_test_suite(
470
480
"--driver=ie" ,
471
481
],
472
482
tags = [
483
+ "no-rbe" ,
473
484
"no-sandbox" ,
474
485
],
475
486
deps = [
@@ -493,6 +504,7 @@ py_test_suite(
493
504
],
494
505
tags = [
495
506
"exclusive-if-local" ,
507
+ "no-rbe" ,
496
508
"no-sandbox" ,
497
509
],
498
510
deps = [
@@ -517,6 +529,7 @@ py_test_suite(
517
529
],
518
530
tags = [
519
531
"exclusive-if-local" ,
532
+ "no-rbe" ,
520
533
"no-sandbox" ,
521
534
],
522
535
deps = [
@@ -541,6 +554,7 @@ py_test_suite(
541
554
],
542
555
tags = [
543
556
"exclusive-if-local" ,
557
+ "no-rbe" ,
544
558
"no-sandbox" ,
545
559
],
546
560
deps = [
0 commit comments