Published for 2020.12.9

This commit is contained in:
2020-12-15 17:29:32 +01:00
parent 7ee2eff483
commit e9722271fb
48 changed files with 693 additions and 80 deletions

View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
"""
tests_dev
~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2020 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'tests_dev'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de'
__version__ = '2020.12.9'
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major=2020, minor=12, micro=9)

View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
"""
tests_dev.db
~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2020 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'tests_dev.db'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de'
__version__ = '2020.12.9'
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major=2020, minor=12, micro=9)

View File

@@ -21,7 +21,6 @@ class Program(ApplicationBase):
self._configuration: Optional[ConfigurationBase] = None
self._logger: Optional[LoggerBase] = None
self._publisher: Optional[PublisherBase] = None
# Console.disable()
def create_application_host(self):
self._app_host = ApplicationHost()
@@ -38,7 +37,6 @@ class Program(ApplicationBase):
def create_services(self):
# Add and create logger
Console.enable()
self._services.add_singleton(LoggerBase, Logger)
self._logger = self._services.get_service(LoggerBase)
@@ -53,8 +51,6 @@ class Program(ApplicationBase):
self._logger.debug(__name__, f'Customer: {self._configuration.environment.customer}')
self._publisher.exclude('../tests')
self._publisher.exclude('../tests_dev')
# self._publisher.include()
# self._publisher.create()
self._publisher.create()
self._publisher.publish()