diff --git a/.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml b/.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml index 8f1777db303..eb55fb592cc 100644 --- a/.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml +++ b/.github/workflows/fast-dispatch-full-regressions-and-models-impl.yaml @@ -54,27 +54,6 @@ jobs: cmd: tests/scripts/single_card/nightly/run_gs_only.sh, timeout: 40 }, - { - name: "API tests GS", - arch: grayskull, - runs-on: ["cloud-virtual-machine", "E150", "in-service"], - cmd: ./tests/scripts/run_tests.sh --tt-arch grayskull --pipeline-type frequent_api --dispatch-mode fast, - timeout: 10 - }, - { - name: "API tests N300 WH B0", - arch: wormhole_b0, - runs-on: ["cloud-virtual-machine", "N300", "in-service"], - cmd: ./tests/scripts/run_tests.sh --tt-arch wormhole_b0 --pipeline-type frequent_api --dispatch-mode fast, - timeout: 10 - }, - { - name: "API tests N150 WH B0", - arch: wormhole_b0, - runs-on: ["cloud-virtual-machine", "N150", "in-service"], - cmd: ./tests/scripts/run_tests.sh --tt-arch wormhole_b0 --pipeline-type frequent_api --dispatch-mode fast, - timeout: 10 - }, { name: "[Unstable] N150 models", arch: wormhole_b0, diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh index fd8d580296c..517503b2646 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -79,12 +79,6 @@ run_frequent_api_pipeline_tests() { TT_METAL_SLOW_DISPATCH_MODE=1 ./build/test/tt_metal/unit_tests_frequent echo "Running Python API unit tests in SD for frequent..." ./tests/scripts/run_python_api_unit_tests.sh - else - if [[ $tt_arch == "wormhole_b0" ]]; then - pytest -n auto tests/ttnn/unit_tests/operations/test_all_gather.py -k nightly - else - echo "API tests are not available for fast dispatch because they're already covered in post-commit" - fi fi }