blob: f01a8c988560980a2457eafa9bab012d2aeb9215 [file] [log] [blame]
# Copyright 2024 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("system_power_state_controller_starnix_test") {
enable_mypy = true
main_source = "system_power_state_controller_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 =
[ ":system_power_state_controller_starnix_test($host_toolchain)" ]
}