no slow unittests (#38480)

* rm test_regen

* not slow

* skip bridge

* rm that one too

* just op test

* just test
This commit is contained in:
Adeeb Shihadeh
2026-07-28 16:42:38 -07:00
committed by GitHub
parent 294635beb5
commit 83000c571c
7 changed files with 64 additions and 89 deletions
-2
View File
@@ -173,8 +173,6 @@ def collect(targets, keyword):
continue
if getattr(cls, "__unittest_skip_why__", "") == "parameterized base class":
continue
if os.environ.get("SKIP_SLOW") and getattr(cls, "SLOW_TEST", False):
continue
if not keyword or keyword.lower() in test.id().lower():
tests.append(test)
return list({test.id(): test for test in tests}.values()), errors