21 lines
559 B
Python
21 lines
559 B
Python
"""
|
|
YouTube Summarizer Test Runner
|
|
|
|
A comprehensive test execution and reporting system for the YouTube Summarizer project.
|
|
Provides intelligent test discovery, parallel execution, detailed reporting, and CI/CD integration.
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "YouTube Summarizer Team"
|
|
|
|
from .core.test_runner import TestRunner
|
|
from .core.test_discovery import TestDiscovery
|
|
from .core.test_execution import TestExecutor
|
|
from .core.reporting import TestReporter
|
|
|
|
__all__ = [
|
|
"TestRunner",
|
|
"TestDiscovery",
|
|
"TestExecutor",
|
|
"TestReporter"
|
|
] |