From 9d2ea94fe9d5b266b30dfbe47bec526abc500f45 Mon Sep 17 00:00:00 2001 From: qazal <77887910+Qazalin@users.noreply.github.com> Date: Tue, 13 Aug 2024 21:31:55 +0800 Subject: [PATCH] temp: disable process replay on metal (#6062) --- .github/workflows/test.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f60c01093b..a9273641d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -326,11 +326,12 @@ jobs: run: FUZZ_SCHEDULE=1 FUZZ_SCHEDULE_MAX_PATHS=5 python -m pytest test/models/test_train.py test/models/test_end2end.py - 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 - run: | - export PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH") - export COMMIT_MESSAGE=$(git show -s --format=%B ${{ github.event.pull_request.head.sha }}) - cp test/external/process_replay/process_replay.py ./process_replay.py && git fetch origin master && git -c advice.detachedHead=false checkout origin/master && PYTHONPATH=. python3 process_replay.py + # TODO: this is timing out + #- name: Run process replay tests + #run: | + # export PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH") + # export COMMIT_MESSAGE=$(git show -s --format=%B ${{ github.event.pull_request.head.sha }}) + # cp test/external/process_replay/process_replay.py ./process_replay.py && git fetch origin master && git -c advice.detachedHead=false checkout origin/master && PYTHONPATH=. python3 process_replay.py # testwebgl: # name: WebGL Tests