Skip to content

Commit

Permalink
Updated test_TC_CADMIN_1_4:
Browse files Browse the repository at this point in the history
- Updated to using isort off to avoid CI re-sorting the dependencies during this test run
  • Loading branch information
j-ororke committed Oct 23, 2024
1 parent db269ae commit 5dc3802
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/python_testing/test_testing/test_TC_CADMIN_1_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,14 @@
from chip.tlv import TLVReader
from mobly import asserts

# isort: off

parent_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(parent_dir)

from mdns_discovery import mdns_discovery

# isort: on

# Reachable attribute is off in the pics file
# MaxPathsPerInvoke is not include in the pics file
Expand All @@ -40,7 +45,7 @@
nonce = random.randbytes(32)


class TC_CADMIN_1_4_nofreset(MatterBaseTest):
class TC_CADMIN_1_4_noreset(MatterBaseTest):
async def get_fabrics(self, th: ChipDeviceCtrl) -> int:
OC_cluster = Clusters.OperationalCredentials
if th == self.th2:
Expand All @@ -60,7 +65,6 @@ async def get_rcac_decoded(self, th: str) -> int:
return th_rcac_decoded

async def get_txt_record(self):
from mdns_discovery import mdns_discovery
discovery = mdns_discovery.MdnsDiscovery(verbose_logging=True)
comm_service = await discovery.get_commissionable_service(
discovery_timeout_sec=240,
Expand Down

0 comments on commit 5dc3802

Please sign in to comment.