Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e544fc45 authored by Bhakthavatsala Raghavendra's avatar Bhakthavatsala Raghavendra
Browse files

Use local test list in pairing

Bug: 277282212
Test: atest avatar
Flag: EXEMPT, Tests
Change-Id: I6611ca73e4fca52e5f4c3ad575874c1ea5c68084
parent 01f11534
Loading
Loading
Loading
Loading
+2 −3
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@ import avatar.cases.le_security_test
import avatar.cases.security_test
import avatar.cases.security_test
import gatt_test
import gatt_test
import hfpclient_test
import hfpclient_test
import pairing.smp_test as smp_test
from pairing import _test_class_list as _pairing_test_class_list
import sdp_test
import sdp_test


_TEST_CLASSES_LIST = [
_TEST_CLASSES_LIST = [
@@ -33,11 +33,10 @@ _TEST_CLASSES_LIST = [
    avatar.cases.le_security_test.LeSecurityTest,
    avatar.cases.le_security_test.LeSecurityTest,
    a2dp_test.A2dpTest,
    a2dp_test.A2dpTest,
    sdp_test.SdpTest,
    sdp_test.SdpTest,
    smp_test.SmpTest,
    gatt_test.GattTest,
    gatt_test.GattTest,
    asha_test.AshaTest,
    asha_test.AshaTest,
    hfpclient_test.HfpClientTest,
    hfpclient_test.HfpClientTest,
]
] + _pairing_test_class_list




def _parse_cli_args() -> Tuple[Namespace, List[str]]:
def _parse_cli_args() -> Tuple[Namespace, List[str]]:
+19 −0
Original line number Original line Diff line number Diff line
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from pairing.smp_test import SmpTest

_test_class_list = [
    SmpTest,
]