blob: b8b3a55068b706414b164883e4ba304dbf2e9008 [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_mobly_test.gni")
import("//build/python/sdk_python_mobly_test.gni")
import("//build/testing/environments.gni")
assert(is_host, "Python E2E tests are host-only")
python_mobly_test("rtc_conformance_test") {
# Required for SDK inclusion.
testonly = false
main_source = "test_rtc_conformance.py"
libraries = [
"//src/testing/end_to_end/honeydew:honeydew_no_testonly",
"//src/testing/end_to_end/mobly_base_tests:fuchsia_base_test_no_testonly",
]
enable_hermetic_exe = true
environments = [ vim3_env ]
# This test changes the time on device to future and resets it back to present.
# Failing to reset the time can cause subsequent tests to fail. So prevent it
# from affecting other tests by isolating it to its own shard.
isolated = true
}
sdk_python_mobly_test("rtc_conformance_test_sdk") {
sdk_name = "rtc_conformance_test"
test_label = ":rtc_conformance_test"
category = "partner"
}