blob: e6d11f851bb840a4215e1da8defbe379959d71d6 [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/python/python_mobly_test.gni")
import("//build/testing/environments.gni")
assert(is_host, "Python E2E tests are host-only")
python_mobly_test("hello_world_test_fc") {
main_source = "test_hello_world.py"
libraries = [
"//src/testing/end_to_end/honeydew",
"//src/testing/end_to_end/mobly_base_tests:fuchsia_base_test",
]
transport = "fuchsia-controller"
environments = [
# Only enable for AEMU-x64 as host-tests aren't supported on QEMU-arm64.
aemu_env,
]
}
group("tests") {
testonly = true
public_deps = [ ":hello_world_test_fc($host_toolchain)" ]
}