diff --git a/feature_integration_tests/itf/BUILD b/feature_integration_tests/itf/BUILD index 0e4c65fb1b..465800f86c 100644 --- a/feature_integration_tests/itf/BUILD +++ b/feature_integration_tests/itf/BUILD @@ -8,9 +8,6 @@ filegroup( "test_showcases.py", "test_ssh.py", ], - visibility = [ - "//images/qnx_x86_64:__pkg__", - ], ) py_itf_test( diff --git a/images/qnx_x86_64/BUILD b/images/qnx_x86_64/BUILD index 924e6d100e..b2694b2634 100644 --- a/images/qnx_x86_64/BUILD +++ b/images/qnx_x86_64/BUILD @@ -11,8 +11,6 @@ # SPDX-License-Identifier: Apache-2.0 # ******************************************************************************* load("@rules_shell//shell:sh_binary.bzl", "sh_binary") -load("@score_itf//:defs.bzl", "py_itf_test") -load("@score_itf//score/itf/plugins:plugins.bzl", "dlt", "qemu") alias( name = "image", @@ -33,27 +31,3 @@ sh_binary( "@toolchains_qnx_sdp//:host_dir", ], ) - -# For now we keep this not in /feature_integration_tests but locally within images - -py_itf_test( - name = "test_qnx_8_x86_64", - srcs = [ - "//feature_integration_tests/itf:all_tests", - ], - args = [ - "--qemu-config=$(location //feature_integration_tests/configs:qemu_bridge_config.json)", - "--qemu-image=$(location :image)", - ], - data = [ - ":image", - "//feature_integration_tests/configs:qemu_bridge_config.json", - ], - plugins = [ - qemu, - ], - tags = [ - "local", - "manual", - ], -)