From 6d92e9ffbfce9e5c471775eb41df1e3bbba80eeb Mon Sep 17 00:00:00 2001 From: qazal <77887910+Qazalin@users.noreply.github.com> Date: Fri, 5 Dec 2025 19:25:23 +0800 Subject: [PATCH] hotfix: skip process replay on lvp (#13585) --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b7c2a7d4e..2c70bd7d98 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -719,6 +719,7 @@ jobs: - name: Run TRANSCENDENTAL math run: TRANSCENDENTAL=2 python -m pytest -n=auto test/test_ops.py::TestOps::test_sin test/test_ops.py::TestOps::test_cos test/test_ops.py::TestOps::test_tan test/test_ops.py::TestOps::test_exp test/test_ops.py::TestOps::test_log --durations=20 - name: Run process replay tests + if: matrix.backend != 'lvp' # TODO: LVP is disabled due to renderer errors, bring this back uses: ./.github/actions/process-replay amdremote: @@ -935,6 +936,7 @@ jobs: - name: Run pytest (${{ matrix.backend }}) run: python3 -m pytest -n=auto test/ --ignore=test/models --ignore=test/unit --durations=20 - name: Run process replay tests + if: matrix.backend != 'lvp' # TODO: LVP is disabled due to renderer errors, bring this back uses: ./.github/actions/process-replay - name: Run macOS-specific unit test if: matrix.backend == 'cpu'