Skip to content

Commit

Permalink
chore: right size tests to supress bazel warning (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored Aug 19, 2024
1 parent 9b87fa7 commit abbbd54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/tests/transitions/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ go_binary(

go_test(
name = "test_transition_test",
size = "small",
srcs = ["simple_test.go"],
)

Expand Down Expand Up @@ -155,6 +156,7 @@ platform_transition_test(

sh_test(
name = "test_go_binary_is_x86_64",
size = "small",
srcs = ["test_file_type_contains.sh"],
args = [
"$(rootpath :transitioned_go_binary_x86_64)",
Expand All @@ -165,6 +167,7 @@ sh_test(

sh_test(
name = "test_go_binary_is_arm64",
size = "small",
srcs = ["test_file_type_contains.sh"],
args = [
"$(rootpath :transitioned_go_binary_arm64)",
Expand All @@ -175,6 +178,7 @@ sh_test(

sh_test(
name = "test_go_test_is_x86_64",
size = "small",
srcs = ["test_file_type_contains.sh"],
args = [
"$(rootpath :transitioned_go_test_x86_64)",
Expand All @@ -185,6 +189,7 @@ sh_test(

sh_test(
name = "test_go_test_is_arm64",
size = "small",
srcs = ["test_file_type_contains.sh"],
args = [
"$(rootpath :transitioned_go_test_arm64)",
Expand Down
3 changes: 3 additions & 0 deletions shlib/tests/lib_tests/assertions_tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ sh_library(

sh_test(
name = "assert_equal_test",
size = "small",
srcs = ["assert_equal_test.sh"],
deps = [
":assert_fail",
Expand All @@ -16,6 +17,7 @@ sh_test(

sh_test(
name = "assert_match_test",
size = "small",
srcs = ["assert_match_test.sh"],
deps = [
":assert_fail",
Expand All @@ -26,6 +28,7 @@ sh_test(

sh_test(
name = "assert_no_match_test",
size = "small",
srcs = ["assert_no_match_test.sh"],
deps = [
":assert_fail",
Expand Down

0 comments on commit abbbd54

Please sign in to comment.