blob: 19e44a9a6e889d9ee4b06f59b08b893347b1036c [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_host_test.gni")
if (is_host) {
python_host_test("init_test") {
enable_mypy = true
main_source = "init_test.py"
libraries = [
"//src/testing/end_to_end/honeydew",
"//third_party/parameterized",
]
main_callable = "unittest.main"
extra_args = [ "-v" ]
}
}
group("tests") {
testonly = true
public_deps = []
if (host_os != "mac") {
public_deps += [
":init_test($host_toolchain)",
"affordances_tests:tests",
"auxiliary_devices_tests:tests",
"fuchsia_device_tests:tests",
"transports_tests:tests",
"typing_tests:tests",
"utils_tests:tests",
]
}
}