Skip to content

Convert WORKSPACE to MODULE.bazel, update README #312

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set test sizes to "small" as appropriate
This eliminates warnings that these tests are sized too big, since the
default is "medium".
  • Loading branch information
mbland committed Apr 12, 2024
commit e8a19258e414336dcce8312bcd0f0ddbf16abe1e
1 change: 1 addition & 0 deletions cpp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ cc_test(
name = "cpp_test",
srcs = ["hello_test.cc"],
deps = [":cpp_lib"],
size = "small",
)
1 change: 1 addition & 0 deletions infra/msvc_filter_showincludes/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ go_test(
srcs = ["msvc_filter_showincludes_test.go"],
embed = [":msvc_filter_showincludes_lib"],
deps = ["@com_github_google_go_cmp//cmp"],
size = "small",
)
1 change: 1 addition & 0 deletions java/com/engflow/example/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ java_test(
name = "ExampleTest",
srcs = ["ExampleTest.java"],
deps = [":example"],
size = "small",
)
3 changes: 3 additions & 0 deletions python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ py_test(
":hello",
"@io_abseil_py//absl/testing:absltest",
],
size = "small",
)

# This wrapper supports sharding, fast-failing and test filtering: try
Expand All @@ -36,12 +37,14 @@ pytest_test(
shard_count = 2,
tags = ["todo-pe1188-remote-incompatible"],
deps = [":hello"],
size = "small",
)

py_test(
name = "hello_unittest_test",
srcs = ["hello_unittest_test.py"],
deps = [":hello"],
size = "small",
)

# Utility to help re-generate requirements lock.
Expand Down
1 change: 1 addition & 0 deletions scala/com/engflow/example/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ scala_test(
name = "exampleScalaTest",
srcs = ["ScalaExampleTest.scala"],
deps = [":exampleScala"],
size = "small",
)