Files
Shahar Naveh a4579a98b2 Update NOP tests to 3.14.5 (#7902)
* Update `test_xxlimited.py` & `test_xxtestfuzz.py` to 3.14.5

* Add more NOP tests

* Remove `test_capi`

* Remove `test_cext`
2026-05-19 13:20:00 +09:00

13 lines
294 B
Python
Vendored

import os.path
from test import support
from test.support import load_package_tests
# Creating a virtual environment and building C extensions is slow
support.requires('cpu')
# Load all tests in package
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)