All checks were successful
Build on push / prepare (push) Successful in 9s
Build on push / core (push) Successful in 17s
Build on push / query (push) Successful in 17s
Build on push / dependency (push) Successful in 17s
Build on push / translation (push) Successful in 14s
Build on push / mail (push) Successful in 18s
Build on push / database (push) Successful in 18s
Build on push / application (push) Successful in 24s
Build on push / auth (push) Successful in 14s
24 lines
825 B
Python
24 lines
825 B
Python
import unittest
|
|
|
|
from cpl.application import ApplicationABC
|
|
from cpl.core.configuration import ConfigurationABC
|
|
from cpl.dependency import ServiceProviderABC
|
|
from unittests_cli.cli_test_suite import CLITestSuite
|
|
from unittests_core.core_test_suite import CoreTestSuite
|
|
from unittests_query.query_test_suite import QueryTestSuite
|
|
from unittests_translation.translation_test_suite import TranslationTestSuite
|
|
|
|
|
|
class Application(ApplicationABC):
|
|
def __init__(self, config: ConfigurationABC, services: ServiceProviderABC):
|
|
ApplicationABC.__init__(self, config, services)
|
|
|
|
def configure(self): ...
|
|
|
|
def main(self):
|
|
runner = unittest.TextTestRunner()
|
|
runner.run(CoreTestSuite())
|
|
runner.run(CLITestSuite())
|
|
runner.run(QueryTestSuite())
|
|
runner.run(TranslationTestSuite())
|