Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions bazel_common/score_modules_target_sw.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ git_override(
patch_strip = 1,
patches = [
"//patches/communication:001-expose-comm-examples.patch",
"//patches/communication:002-expose-com-api-gen.patch",
"//patches/communication:003-module-deps-visibility.patch",
],
remote = "https://github.com/eclipse-score/communication.git",
Expand Down
23 changes: 22 additions & 1 deletion feature_integration_tests/itf/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,24 @@ config_setting(
],
)

# Grouped per suite so future additions don't mix into one undifferentiated
# list; all_tests below is the union of these groups plus shared utilities.
filegroup(
name = "communication_tests",
srcs = [
"comm_helpers.py",
"test_communication.py",
Comment on lines +38 to +39

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

extract to separate group, this will mix in the future.
Gather all groups under all_tests

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed: new communication_tests filegroup created

],
)

filegroup(
name = "all_tests",
srcs = [
"test_properties.py",
"test_remote_logging.py",
"test_showcases.py",
"test_ssh.py",
":communication_tests",
],
)

Expand All @@ -44,6 +56,13 @@ py_itf_test(
srcs = [
":all_tests",
],
# @add_test_properties(...) (feature_integration_tests/itf/test_properties.py)
# writes PartiallyVerifies/FullyVerifies properties into the JUnit XML
# report, matching the convention already used by
# feature_integration_tests/test_cases (persistency FIT). The
# score_itf//score/itf/plugins:attribute_plugin entry below (not a raw
# score_tooling dep) activates the plugin and injects the required
# "-p attribute_plugin" pytest arg automatically.
args = select(
{
":config_linux_x86_64": [
Expand Down Expand Up @@ -82,7 +101,9 @@ py_itf_test(
],
},
no_match_error = "Unsupported platform",
),
) + [
"@score_itf//score/itf/plugins:attribute_plugin",
],
tags = [
"manual",
],
Expand Down
Loading
Loading