From 5b0b68ec55beab5b9a373d47aed6ea08e22cef35 Mon Sep 17 00:00:00 2001 From: nimlgen <138685161+nimlgen@users.noreply.github.com> Date: Wed, 5 Aug 2026 15:47:40 +0300 Subject: [PATCH] remove debug from test (#17410) --- .github/workflows/test.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 605a8e6d5b..54fc715189 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -519,15 +519,7 @@ jobs: deps: testing_unit amd: 'true' - name: Run HCQ2 tests - run: | - command -v gdb >/dev/null || sudo apt-get install -y -qq gdb || true - ulimit -c unlimited || true - echo 'core.%p' | sudo tee /proc/sys/kernel/core_pattern || true - # -u + -v so the last test name reaches the log before a crash, faulthandler for the python stack on SIGSEGV - HCQ_RUNTIME_DEV=PYTHON HCQ2=1 DEV=MOCKKFD+AMD FORWARD_ONLY=1 PYTHONFAULTHANDLER=1 PYTHONPATH=. python -u test/test_tiny.py -v || { - st=$?; echo "::error::test_tiny exited $st" - for c in core.*; do gdb -q -batch -ex 'thread apply all bt' "$(command -v python)" "$c" || true; done - exit $st; } + run: HCQ_RUNTIME_DEV=PYTHON HCQ2=1 DEV=MOCKKFD+AMD FORWARD_ONLY=1 PYTHONPATH=. python test/test_tiny.py - name: Run HCQ2 multi-device tests run: | HCQ_RUNTIME_DEV=PYTHON HCQ2=1 DEV=MOCKKFD+AMD FORWARD_ONLY=1 PYTHONPATH=. python test/unit/test_multitensor.py \