Skip to content

Commit

Permalink
Remove the CI skip condition
Browse files Browse the repository at this point in the history
  • Loading branch information
yufengwangca committed Aug 27, 2024
1 parent 358ef26 commit 22f9104
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/python_testing/TC_CCTRL_2_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,12 @@ async def test_TC_CCTRL_2_3(self):
await self.send_single_cmd(cmd, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, timedRequestTimeoutMs=5000)

self.step(11)
if not self.is_ci:
time.sleep(30)
time.sleep(30)

self.step(12)
th_server_fabrics_new = await self.read_single_attribute_check_success(cluster=Clusters.OperationalCredentials, attribute=Clusters.OperationalCredentials.Attributes.Fabrics, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, fabric_filtered=False)
if not self.is_ci:
asserts.assert_equal(len(th_server_fabrics) + 1, len(th_server_fabrics_new),
"Unexpected number of fabrics on TH_SERVER")
asserts.assert_equal(len(th_server_fabrics) + 1, len(th_server_fabrics_new),
"Unexpected number of fabrics on TH_SERVER")


if __name__ == "__main__":
Expand Down

0 comments on commit 22f9104

Please sign in to comment.