📁 File Manager Pro
v10.0.3 | PHP: 7.4.15
Server: Apache/2.4.25 (Debian)
2026-07-02 04:49:16
📂
/ (Root)
/
usr
/
lib
/
python3
/
dist-packages
/
zope
/
interface
/
tests
📍 /usr/lib/python3/dist-packages/zope/interface/tests
🔄 Refresh
✏️
Editing: __init__.py
Read Only
import os import unittest def additional_tests(): suites = unittest.TestSuite() for file in os.listdir(os.path.dirname(__file__)): if file.endswith('.py') and file!='__init__.py': name = os.path.splitext(file)[0] module = __import__('.'.join((__name__, name)), globals(), locals(), [name]) if hasattr(module, 'test_suite'): suites.addTests(module.test_suite()) return suites
💾 Save Changes
❌ Cancel