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

Commit 38d7f4a0 authored by Bhakthavatsala Raghavendra's avatar Bhakthavatsala Raghavendra Committed by Gerrit Code Review
Browse files

Merge "Use local test list in pairing" into main

parents 42ccac78 e544fc45
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ import avatar.cases.le_security_test
import avatar.cases.security_test
import gatt_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

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


def _parse_cli_args() -> Tuple[Namespace, List[str]]:
+19 −0
Original line number 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,
]