/opt/cloudlinux/venv/lib/python3.11/site-packages/guppy/heapy/test
NameSizeModeActions
__pycache__/-0755rm
support.py38140644editdlrm
test_all.py6820644editdlrm
test_Classifiers.py290590644editdlrm
test_dependencies.py2140644editdlrm
test_ER.py128580644editdlrm
test_gsl.py4210644editdlrm
test_heapyc.py159720644editdlrm
test_menuleak.py31960644editdlrm
test_OutputHandling.py13760644editdlrm
test_Part.py103980644editdlrm
test_Path.py295160644editdlrm
test_RefPat.py171560644editdlrm
test_RetaGraph.py950644editdlrm
test_sf.py5830644editdlrm
test_Spec.py3510644editdlrm
test_UniSet.py12410644editdlrm
test_View.py81800644editdlrm
__init__.py470644editdlrm
Edit: /opt/cloudlinux/venv/lib/python3.11/site-packages/guppy/heapy/test/test_all.py (682B)
import importlib import sys autotests = ( 'dependencies', 'gsl', 'Classifiers', 'heapyc', 'ER', 'OutputHandling', 'Part', 'Path', 'RefPat', 'UniSet', 'View', ) # These are not tested here others = ( 'menuleak', 'sf', ) def test_main(debug=False): for name in autotests: testname = 'guppy.heapy.test.test_'+name try: del sys.modules[testname] except KeyError: pass x = importlib.import_module(testname) print('imported:', testname) f = x.test_main f(debug=debug) del sys.modules[testname] if __name__ == '__main__': test_main()