From f1108f1cbeb2af5e0a187942973d34067c0c1911 Mon Sep 17 00:00:00 2001 From: Sieds Lykles <93992551+S-Lykles@users.noreply.github.com> Date: Thu, 18 Sep 2025 02:12:36 +0200 Subject: [PATCH] Enable test_symbolic_ops on rangeify (#12230) * enable * merge correctly --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 805abb79f1..6ee6d44acd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -526,7 +526,7 @@ jobs: run: | CPU=1 CPU_LLVM=0 RANGEIFY=1 python3 -m pytest -n auto --durations 20 \ -k "not test_embedding and not test_load_state_dict_sharded_model_dict_same_axis and not test_instancenorm_3d" \ - test/test_tiny.py test/test_rangeify.py test/test_ops.py test/test_tensor_variable.py \ + test/test_tiny.py test/test_rangeify.py test/test_ops.py test/test_symbolic_ops.py test/test_tensor_variable.py \ test/test_outerworld_range.py test/test_sample.py test/test_randomness.py test/test_nn.py test/test_arange.py - name: Test const folding run: CPU=1 RANGEIFY=1 python3 -m pytest -n auto --durations 20 test/test_const_folding.py -k "not test_cast_padded and not TestReduceOpsConstFolding and not TestMultiConstFolding"