hotfix: disable process replay in REMOTE=1 tests (#11320)

* hotfix: disable process replay in REMOTE=1 tests

* comment
This commit is contained in:
qazal
2025-07-22 10:41:58 +03:00
committed by GitHub
parent 3b674df34b
commit 0c4e19f270

View File

@@ -508,9 +508,10 @@ jobs:
run: CPU=1 PYTHONPATH=. python3 test/external/external_test_onnx_ops.py
- name: Test Quantize ONNX
run: CPU=1 PYTHONPATH=. python3 test/test_quantize_onnx.py
- name: Run REMOTE=1 Test
- name: Run REMOTE=1 Test (without process replay)
run: |
REMOTEDEV=CPU REMOTE=1 python3 -m pytest test/test_tiny.py test/test_jit.py test/test_multitensor.py
# TODO: re enable process replay, currently remote schedule opens devices
CAPTURE_PROCESS_REPLAY=0 REMOTEDEV=CPU REMOTE=1 python3 -m pytest test/test_tiny.py test/test_jit.py test/test_multitensor.py
- name: Run process replay tests
uses: ./.github/actions/process-replay