From bbb9a1ba6dc410d7f4006a26e16cb99ff0da5224 Mon Sep 17 00:00:00 2001 From: yunhanw-google Date: Thu, 9 Dec 2021 16:55:18 -0800 Subject: [PATCH] extend cirque test timeout (#12858) * extend cirque test timeout * Revert "Disable cirque: need time to transition to new python api, keeping old API working creates a lot of developer overhead (#12857)" This reverts commit 0b60205e66c62f33118c0d3120d7ee571eeff44e. --- .github/workflows/cirque.yaml | 4 ++-- src/test_driver/linux-cirque/MobileDeviceTest.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index 97a532e1f39028..a695bb218e96d7 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -15,8 +15,8 @@ name: Cirque on: -# push: -# pull_request: + push: + pull_request: workflow_dispatch: concurrency: diff --git a/src/test_driver/linux-cirque/MobileDeviceTest.py b/src/test_driver/linux-cirque/MobileDeviceTest.py index 78fa4b3baaaf70..fa912dd6bb4bbe 100755 --- a/src/test_driver/linux-cirque/MobileDeviceTest.py +++ b/src/test_driver/linux-cirque/MobileDeviceTest.py @@ -91,7 +91,7 @@ def run_controller_test(self): self.execute_device_cmd(req_device_id, "pip3 install {}".format(os.path.join( CHIP_REPO, "out/debug/linux_x64_gcc/controller/python/chip-0.0-cp37-abi3-linux_x86_64.whl"))) - command = "gdb -return-child-result -q -ex run -ex bt --args python3 {} -t 75 -a {}".format( + command = "gdb -return-child-result -q -ex run -ex bt --args python3 {} -t 150 -a {}".format( os.path.join( CHIP_REPO, "src/controller/python/test/test_scripts/mobile-device-test.py"), ethernet_ip)