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
17 changes: 16 additions & 1 deletion feature_integration_tests/itf/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ config_setting(
filegroup(
name = "all_tests",
srcs = [
"comm_helpers.py",
"test_communication.py",
"test_properties.py",
"test_remote_logging.py",
"test_showcases.py",
"test_ssh.py",
Expand All @@ -44,7 +47,16 @@ py_itf_test(
srcs = [
":all_tests",
],
args = select(
# "-p attribute_plugin" activates score_tooling's requirement-traceability
# pytest plugin (see the "deps" attribute below) so that
# @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).
args = [
"-p",
"attribute_plugin",
] + select(
{
":config_linux_x86_64": [
"--dlt-config=$(location //feature_integration_tests/configs:dlt_config_x86_64.json)",
Expand Down Expand Up @@ -86,6 +98,9 @@ py_itf_test(
tags = [
"manual",
],
deps = [
"@score_tooling//python_basics/score_pytest:attribute_plugin",
],
)

# Backward compatible aliases for CI jobs - these should be removed once the CI jobs are updated to use the new target names
Expand Down
Loading
Loading