Skip to content

Commit

Permalink
[ci+bazel] Mark most python test suites as skip-remote
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Aug 14, 2023
1 parent d7b7f2f commit 3143f60
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions py/BUILD.bazel
Expand Up @@ -355,6 +355,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -380,6 +381,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -402,6 +404,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -425,6 +428,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -449,6 +453,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -471,6 +476,7 @@ py_test_suite(
],
tags = [
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -494,6 +500,7 @@ py_test_suite(
tags = [
"exclusive-if-local",
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -518,6 +525,7 @@ py_test_suite(
tags = [
"exclusive-if-local",
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand All @@ -542,6 +550,7 @@ py_test_suite(
tags = [
"exclusive-if-local",
"no-sandbox",
"skip-remote",
],
deps = [
":init-tree",
Expand Down
6 changes: 3 additions & 3 deletions py/private/browsers.bzl
Expand Up @@ -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,
Expand All @@ -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"],
},
}

0 comments on commit 3143f60

Please sign in to comment.