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

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