mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
* Update `test_xxlimited.py` & `test_xxtestfuzz.py` to 3.14.5 * Add more NOP tests * Remove `test_capi` * Remove `test_cext`
13 lines
294 B
Python
Vendored
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)
|