0

[ci+bazel] Mark most python test suites as skip-remote

NOKEYCHECK=True
GitOrigin-RevId: 3143f6095801339a3ff293ceda9d1c995a9c5a9c
This commit is contained in:
Simon Mavi Stewart
2023-08-14 11:37:30 +01:00
committed by Copybara-Service
parent f2285b17a5
commit f5c05aab3e
2 changed files with 12 additions and 3 deletions

@ -355,6 +355,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -380,6 +381,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -402,6 +404,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -425,6 +428,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -449,6 +453,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -471,6 +476,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -494,6 +500,7 @@ py_test_suite(
tags = [
"exclusive-if-local",
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -518,6 +525,7 @@ py_test_suite(
tags = [
"exclusive-if-local",
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
@ -542,6 +550,7 @@ py_test_suite(
tags = [
"exclusive-if-local",
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",

@ -65,7 +65,7 @@ BROWSERS = {
"edge": {
"args": ["--driver=edge"] + edge_args,
"data": edge_data,
"tags": COMMON_TAGS + ["edge"],
"tags": COMMON_TAGS + ["edge", "skip-remote"],
},
"firefox": {
"args": ["--driver=firefox"] + firefox_args,
@ -75,11 +75,11 @@ BROWSERS = {
"ie": {
"args": ["--driver=ie"],
"data": [],
"tags": COMMON_TAGS + ["ie"],
"tags": COMMON_TAGS + ["ie", "skip-remote"],
},
"safari": {
"args": ["--driver=safari"],
"data": [],
"tags": COMMON_TAGS + ["safari"],
"tags": COMMON_TAGS + ["safari", "skip-remote"],
},
}