orionis 0.427.0__py3-none-any.whl → 0.429.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orionis/{_console → console}/commands/version.py +2 -2
- orionis/console/contracts/kernel.py +15 -0
- orionis/console/exceptions/__init__.py +11 -0
- orionis/console/kelnel.py +25 -0
- orionis/foundation/application.py +4 -2
- orionis/metadata/framework.py +1 -1
- orionis/test/kernel.py +63 -48
- {orionis-0.427.0.dist-info → orionis-0.429.0.dist-info}/METADATA +1 -1
- {orionis-0.427.0.dist-info → orionis-0.429.0.dist-info}/RECORD +17 -31
- orionis/_console/__init__.py +0 -0
- orionis/_console/base/__init__.py +0 -0
- orionis/_console/base/command.py +0 -436
- orionis/_console/command_filter.py +0 -36
- orionis/_console/commands/__init__.py +0 -0
- orionis/_console/commands/cache_clear.py +0 -76
- orionis/_console/commands/help.py +0 -70
- orionis/_console/commands/schedule_work.py +0 -55
- orionis/_console/dumper/__init__.py +0 -0
- orionis/_console/dumper/dump_die.py +0 -418
- orionis/_console/exceptions/__init__.py +0 -0
- orionis/_console/kernel.py +0 -31
- orionis/_console/output/__init__.py +0 -0
- orionis/_console/output/console.py +0 -587
- orionis/_console/output/executor.py +0 -90
- orionis/_console/output/progress_bar.py +0 -100
- orionis/_console/parser.py +0 -159
- /orionis/{_console → console}/exceptions/cli_exception.py +0 -0
- /orionis/{_console/exceptions/cli-orionis-value-error.py → console/exceptions/cli_orionis_value_error.py} +0 -0
- /orionis/{_console → console}/exceptions/cli_runtime_error.py +0 -0
- /orionis/{_console → console}/exceptions/cli_schedule_exception.py +0 -0
- {orionis-0.427.0.dist-info → orionis-0.429.0.dist-info}/WHEEL +0 -0
- {orionis-0.427.0.dist-info → orionis-0.429.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.427.0.dist-info → orionis-0.429.0.dist-info}/top_level.txt +0 -0
- {orionis-0.427.0.dist-info → orionis-0.429.0.dist-info}/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
from orionis.console.base.command import BaseCommand
|
|
2
|
+
from orionis.console.exceptions import CLIOrionisRuntimeError
|
|
1
3
|
from orionis.metadata.framework import VERSION
|
|
2
|
-
from orionis._console.base.command import BaseCommand
|
|
3
|
-
from orionis._console.exceptions.cli_runtime_error import CLIOrionisRuntimeError
|
|
4
4
|
|
|
5
5
|
class VersionCommand(BaseCommand):
|
|
6
6
|
"""
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from abc import ABC, abstractmethod
|
|
2
|
+
|
|
3
|
+
class IKernelCLI(ABC):
|
|
4
|
+
"""
|
|
5
|
+
Interface for the Kernel CLI.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
@abstractmethod
|
|
9
|
+
def handle(self, args: list) -> None:
|
|
10
|
+
"""
|
|
11
|
+
Handle the command line arguments.
|
|
12
|
+
|
|
13
|
+
:param args: List of command line arguments (e.g., sys.argv).
|
|
14
|
+
"""
|
|
15
|
+
raise NotImplementedError("This method should be overridden by subclasses.")
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from .cli_exception import CLIOrionisException
|
|
2
|
+
from .cli_runtime_error import CLIOrionisRuntimeError
|
|
3
|
+
from .cli_schedule_exception import CLIOrionisScheduleException
|
|
4
|
+
from .cli_orionis_value_error import CLIOrionisValueError
|
|
5
|
+
|
|
6
|
+
__all__ = [
|
|
7
|
+
'CLIOrionisException',
|
|
8
|
+
'CLIOrionisRuntimeError',
|
|
9
|
+
'CLIOrionisScheduleException',
|
|
10
|
+
'CLIOrionisValueError'
|
|
11
|
+
]
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from orionis.console.contracts.kernel import IKernelCLI
|
|
2
|
+
from orionis.foundation.contracts.application import IApplication
|
|
3
|
+
from orionis.console.exceptions import CLIOrionisValueError
|
|
4
|
+
|
|
5
|
+
class KernelCLI(IKernelCLI):
|
|
6
|
+
|
|
7
|
+
def __init__(
|
|
8
|
+
self,
|
|
9
|
+
app: IApplication
|
|
10
|
+
) -> None:
|
|
11
|
+
|
|
12
|
+
# Validate that the app is an instance of IApplication
|
|
13
|
+
if not isinstance(app, IApplication):
|
|
14
|
+
raise CLIOrionisValueError(
|
|
15
|
+
f"Failed to initialize TestKernel: expected IApplication, got {type(app).__module__}.{type(app).__name__}."
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
def handle(self, args: list) -> None:
|
|
19
|
+
"""
|
|
20
|
+
Handle the command line arguments.
|
|
21
|
+
|
|
22
|
+
:param args: List of command line arguments (e.g., sys.argv).
|
|
23
|
+
"""
|
|
24
|
+
# This method should be implemented in subclasses
|
|
25
|
+
print(args)
|
|
@@ -114,10 +114,12 @@ class Application(Container, IApplication):
|
|
|
114
114
|
|
|
115
115
|
# Import core framework kernels
|
|
116
116
|
from orionis.test.kernel import TestKernel, ITestKernel
|
|
117
|
+
from orionis.console.kelnel import KernelCLI, IKernelCLI
|
|
117
118
|
|
|
118
119
|
# Core framework kernels
|
|
119
120
|
core_kernels = {
|
|
120
|
-
ITestKernel: TestKernel
|
|
121
|
+
ITestKernel: TestKernel,
|
|
122
|
+
IKernelCLI: KernelCLI
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
# Register each kernel instance
|
|
@@ -1255,7 +1257,7 @@ class Application(Container, IApplication):
|
|
|
1255
1257
|
|
|
1256
1258
|
# Return the entire configuration if key is None, except for paths
|
|
1257
1259
|
if key is None:
|
|
1258
|
-
del self.__config['
|
|
1260
|
+
del self.__config['path']
|
|
1259
1261
|
return self.__config
|
|
1260
1262
|
|
|
1261
1263
|
# If key is None, raise an error to prevent ambiguity
|
orionis/metadata/framework.py
CHANGED
orionis/test/kernel.py
CHANGED
|
@@ -2,11 +2,12 @@ from pathlib import Path
|
|
|
2
2
|
import re
|
|
3
3
|
from typing import List
|
|
4
4
|
from os import walk
|
|
5
|
+
from orionis.console.output.contracts.console import IConsole
|
|
5
6
|
from orionis.foundation.config.testing.entities.testing import Testing
|
|
6
7
|
from orionis.foundation.contracts.application import IApplication
|
|
7
8
|
from orionis.test.contracts.kernel import ITestKernel
|
|
8
9
|
from orionis.test.contracts.unit_test import IUnitTest
|
|
9
|
-
from orionis.test.exceptions import OrionisTestConfigException
|
|
10
|
+
from orionis.test.exceptions import OrionisTestConfigException, OrionisTestFailureException
|
|
10
11
|
|
|
11
12
|
class TestKernel(ITestKernel):
|
|
12
13
|
|
|
@@ -42,6 +43,9 @@ class TestKernel(ITestKernel):
|
|
|
42
43
|
self.__unit_test._UnitTest__app = app
|
|
43
44
|
self.__unit_test._UnitTest__storage = app.path('storage_testing')
|
|
44
45
|
|
|
46
|
+
# Initialize the console for output
|
|
47
|
+
self.__console: IConsole = app.make('core.orionis.console')
|
|
48
|
+
|
|
45
49
|
def __listMatchingFolders(
|
|
46
50
|
self,
|
|
47
51
|
base_path: Path,
|
|
@@ -92,54 +96,65 @@ class TestKernel(ITestKernel):
|
|
|
92
96
|
IUnitTest
|
|
93
97
|
The configured and executed unit test instance.
|
|
94
98
|
"""
|
|
99
|
+
try:
|
|
100
|
+
|
|
101
|
+
# Configure the unit test with parameters from the configuration
|
|
102
|
+
self.__unit_test.configure(
|
|
103
|
+
verbosity=self.__config.verbosity,
|
|
104
|
+
execution_mode=self.__config.execution_mode,
|
|
105
|
+
max_workers=self.__config.max_workers,
|
|
106
|
+
fail_fast=self.__config.fail_fast,
|
|
107
|
+
print_result=self.__config.print_result,
|
|
108
|
+
throw_exception=self.__config.throw_exception,
|
|
109
|
+
persistent=self.__config.persistent,
|
|
110
|
+
persistent_driver=self.__config.persistent_driver,
|
|
111
|
+
web_report=self.__config.web_report
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
# Prepare paths and pattern for test discovery
|
|
115
|
+
base_path = (Path.cwd() / self.__config.base_path).resolve()
|
|
116
|
+
folder_path = self.__config.folder_path
|
|
117
|
+
pattern = self.__config.pattern
|
|
118
|
+
|
|
119
|
+
# Set to hold discovered folders
|
|
120
|
+
discovered_folders = set()
|
|
121
|
+
|
|
122
|
+
# Discover folders containing test files according to the configuration
|
|
123
|
+
|
|
124
|
+
# Search all folders under base_path
|
|
125
|
+
if folder_path == '*':
|
|
126
|
+
discovered_folders.update(self.__listMatchingFolders(base_path, base_path, pattern))
|
|
95
127
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
persistent_driver=self.__config.persistent_driver,
|
|
106
|
-
web_report=self.__config.web_report
|
|
107
|
-
)
|
|
108
|
-
|
|
109
|
-
# Prepare paths and pattern for test discovery
|
|
110
|
-
base_path = (Path.cwd() / self.__config.base_path).resolve()
|
|
111
|
-
folder_path = self.__config.folder_path
|
|
112
|
-
pattern = self.__config.pattern
|
|
113
|
-
|
|
114
|
-
# Set to hold discovered folders
|
|
115
|
-
discovered_folders = set()
|
|
116
|
-
|
|
117
|
-
# Discover folders containing test files according to the configuration
|
|
118
|
-
|
|
119
|
-
# Search all folders under base_path
|
|
120
|
-
if folder_path == '*':
|
|
121
|
-
discovered_folders.update(self.__listMatchingFolders(base_path, base_path, pattern))
|
|
122
|
-
|
|
123
|
-
# Search each custom folder in the list
|
|
124
|
-
elif isinstance(folder_path, list):
|
|
125
|
-
for custom in folder_path:
|
|
126
|
-
custom_path = (base_path / custom).resolve()
|
|
128
|
+
# Search each custom folder in the list
|
|
129
|
+
elif isinstance(folder_path, list):
|
|
130
|
+
for custom in folder_path:
|
|
131
|
+
custom_path = (base_path / custom).resolve()
|
|
132
|
+
discovered_folders.update(self.__listMatchingFolders(base_path, custom_path, pattern))
|
|
133
|
+
|
|
134
|
+
# Search a single custom folder
|
|
135
|
+
else:
|
|
136
|
+
custom_path = (base_path / folder_path).resolve()
|
|
127
137
|
discovered_folders.update(self.__listMatchingFolders(base_path, custom_path, pattern))
|
|
128
138
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
139
|
+
# Register discovered folders with the unit test for test discovery
|
|
140
|
+
for folder in discovered_folders:
|
|
141
|
+
self.__unit_test.discoverTestsInFolder(
|
|
142
|
+
folder_path=folder,
|
|
143
|
+
base_path=self.__config.base_path,
|
|
144
|
+
pattern=pattern,
|
|
145
|
+
test_name_pattern=self.__config.test_name_pattern or None,
|
|
146
|
+
tags=self.__config.tags or None
|
|
147
|
+
)
|
|
148
|
+
|
|
149
|
+
# Run the unit tests and return the result
|
|
150
|
+
return self.__unit_test.run()
|
|
151
|
+
|
|
152
|
+
except OrionisTestFailureException as e:
|
|
153
|
+
|
|
154
|
+
# Handle test failures and exit with an error message
|
|
155
|
+
self.__console.exitError(f"Test execution failed: {e}")
|
|
156
|
+
|
|
157
|
+
except Exception as e:
|
|
143
158
|
|
|
144
|
-
|
|
145
|
-
|
|
159
|
+
# Handle unexpected errors and exit with a generic error message
|
|
160
|
+
self.__console.exitError(f"An unexpected error occurred: {e}")
|
|
@@ -1,31 +1,12 @@
|
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
orionis/_console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
orionis/_console/command_filter.py,sha256=bn0fcWfQg13DrQBaV4NopNxdP-6up0G54Qmhg7r_BKA,1211
|
|
4
|
-
orionis/_console/kernel.py,sha256=M4Zc9x-1hrQP7Dq6Ons5UnGoq73XV1Fwa9cwY7zqWbw,883
|
|
5
|
-
orionis/_console/parser.py,sha256=s-e7I4vr2rwg2g8eesvrOnp1jcEiLlBJN4wLh3JyKUE,5578
|
|
6
|
-
orionis/_console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
orionis/_console/base/command.py,sha256=J1BluZaVOeWwwm7NkvFcQqPjzZe_aYXW3icUJA38mZU,12320
|
|
8
|
-
orionis/_console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
orionis/_console/commands/cache_clear.py,sha256=TNrAyB84QZQv_etn7srt_TPE9j6fLNkqymC-1jZ9XEI,2892
|
|
10
|
-
orionis/_console/commands/help.py,sha256=KWHemD2j8YZdX-J6GYL3CNcoByb3XAgxGFzZRZsTKrk,2538
|
|
11
|
-
orionis/_console/commands/schedule_work.py,sha256=IcraCM_jvEXGyQpMUz6qWA2uW4ILhEKqOs5UXLBNXGY,2042
|
|
12
|
-
orionis/_console/commands/version.py,sha256=r7I782jVS_1kbxAVfViGGj1m4GoDJtrb_V_L4MKYGfU,1051
|
|
13
|
-
orionis/_console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
orionis/_console/dumper/dump_die.py,sha256=AsKrcuPwVgTT3UA8DxqFCzuZsGkaGm7bwkm-pr9XlaE,17089
|
|
15
|
-
orionis/_console/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
orionis/_console/exceptions/cli-orionis-value-error.py,sha256=RQP0HRwxDG8hxFOT1kUoZ1Ab1CZ1KLoSIl5yqlmgG4M,1147
|
|
17
|
-
orionis/_console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_vkSRVBJs0wMjEKY,1141
|
|
18
|
-
orionis/_console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
|
|
19
|
-
orionis/_console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
|
|
20
|
-
orionis/_console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
orionis/_console/output/console.py,sha256=6KlvtE4ys6jJU9yLjAVYIHWDmHfWcOHIn_QGcHiJgq0,18894
|
|
22
|
-
orionis/_console/output/executor.py,sha256=sk1l_SmTDE9ZDCUQ95XCwfx7HfBNJFOVs7Kjez9wBSc,3358
|
|
23
|
-
orionis/_console/output/progress_bar.py,sha256=EX1d_sw9JRlE2gWu24bBBRpP2mWfgO_P9S6ztvWuZ2Q,3088
|
|
24
2
|
orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
orionis/console/kelnel.py,sha256=1CuBCLR6KItRt0_m50YQXirJUMX6lJf4Z4vvOjBqaUU,856
|
|
25
4
|
orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
5
|
orionis/console/base/command.py,sha256=2kKyTaEzI16Up-XCUeNeJmDWPLN-CweQm3EgrN9U8NQ,3027
|
|
27
6
|
orionis/console/base/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
7
|
orionis/console/base/contracts/command.py,sha256=s9yjma-s1URkVm0EbVvSkETAm-N8xX7OnZS43P8pvk8,1957
|
|
8
|
+
orionis/console/commands/version.py,sha256=6usAWQnhmpCY5S95gRm1xVQc0ph-qd7UwMI_5OaDKmQ,1031
|
|
9
|
+
orionis/console/contracts/kernel.py,sha256=fzD8FNVSKEQ5gW5D83hVecz9dVHgy28rRDORDdghp4s,409
|
|
29
10
|
orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
11
|
orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
|
|
31
12
|
orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -34,6 +15,11 @@ orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
34
15
|
orionis/console/dynamic/progress_bar.py,sha256=Cw6YqTVhD39TOZe7Ofz1qcDswHm_UVbs-wyS4jOMNzs,3126
|
|
35
16
|
orionis/console/dynamic/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
17
|
orionis/console/dynamic/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
|
|
18
|
+
orionis/console/exceptions/__init__.py,sha256=0qlHNuHMVZO87M-rP8lThUUyljRM1jSFNikaxSCjSbw,366
|
|
19
|
+
orionis/console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_vkSRVBJs0wMjEKY,1141
|
|
20
|
+
orionis/console/exceptions/cli_orionis_value_error.py,sha256=RQP0HRwxDG8hxFOT1kUoZ1Ab1CZ1KLoSIl5yqlmgG4M,1147
|
|
21
|
+
orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
|
|
22
|
+
orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
|
|
37
23
|
orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
24
|
orionis/console/output/console.py,sha256=cN0Jq0KEJaOfM5Y9La3Eel1o6nkVqx_TCWcQ-xyarFw,18725
|
|
39
25
|
orionis/console/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -75,7 +61,7 @@ orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYq
|
|
|
75
61
|
orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
|
|
76
62
|
orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7Fs3UJgQBidI,1844
|
|
77
63
|
orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
-
orionis/foundation/application.py,sha256=
|
|
64
|
+
orionis/foundation/application.py,sha256=0dzMnxCJkFDU3dQWHcGu8V6Vl6GTgJbcAj3KU-bZqFY,49595
|
|
79
65
|
orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
66
|
orionis/foundation/config/startup.py,sha256=vbzduprRCNyYeR2nnMaqc1uKXw6PTzAY2jVfXNQKN8I,9691
|
|
81
67
|
orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -185,7 +171,7 @@ orionis/foundation/providers/progress_bar_provider.py,sha256=WW3grNgH-yV2meSSTeO
|
|
|
185
171
|
orionis/foundation/providers/testing_provider.py,sha256=iJSN2RIChbYIL-1ue6vmPmDMCSrvERDkti4Er9MPiLA,1102
|
|
186
172
|
orionis/foundation/providers/workers_provider.py,sha256=kiQjQRyUEyiBX2zcbF_KmqRgvc7Bvxsvg5oMtIvYniM,1075
|
|
187
173
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
-
orionis/metadata/framework.py,sha256=
|
|
174
|
+
orionis/metadata/framework.py,sha256=KpbHJXODuGS8jd4O3aua6TICaOpum7Z48toOXqdyHeI,4960
|
|
189
175
|
orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
|
|
190
176
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
177
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -306,7 +292,7 @@ orionis/support/standard/exceptions/value.py,sha256=7xry_TZz3k-BLAZTR_uDiQ0RfXOk
|
|
|
306
292
|
orionis/support/wrapper/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
|
|
307
293
|
orionis/support/wrapper/dot_dict.py,sha256=L4J_3id0EHXyjv5FCofXK0ONC2WOoAXZSwX1csitf5E,9299
|
|
308
294
|
orionis/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
|
-
orionis/test/kernel.py,sha256=
|
|
295
|
+
orionis/test/kernel.py,sha256=ClBrsS0D9jRjlrE3Wqs1plODVlw2GrEN8rodEmTdiqE,6270
|
|
310
296
|
orionis/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
297
|
orionis/test/cases/asynchronous.py,sha256=PLdeU4-oked-wU4Z8e588RE09aip2MnkNpLkLpR1J_Q,4304
|
|
312
298
|
orionis/test/cases/synchronous.py,sha256=qAGxxYD9OR9hk54uzOBtZGlkhk7F5XN5-sQ22HIInjU,3526
|
|
@@ -353,7 +339,7 @@ orionis/test/validators/web_report.py,sha256=-h3Fe9jY93_kzUhd2NBIqEfCcBpu-8Ei9x3
|
|
|
353
339
|
orionis/test/validators/workers.py,sha256=LGffDKtK6SKixFKzIYPQpI5aFeQPAGXpv_LUtmEu6g4,1102
|
|
354
340
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
341
|
orionis/test/view/render.py,sha256=3ICz68l-WF3BtnYqH5m-ktN9UD00MELMbmMnyJDV74A,4768
|
|
356
|
-
orionis-0.
|
|
342
|
+
orionis-0.429.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
|
357
343
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
344
|
tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
345
|
tests/container/test_container.py,sha256=asv8TkkupVoex6SWod74NBl4dSs7wb9mLmu_glNdNy8,14815
|
|
@@ -498,8 +484,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
498
484
|
tests/testing/validators/test_testing_validators.py,sha256=QdcF0Vhnnl_kD-PzceHJbUYOqwPTB1Td7YaTv8LTr30,19612
|
|
499
485
|
tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
500
486
|
tests/testing/view/test_render.py,sha256=-ghGG8rimyb2b2wtvMuSPPH7Zac5_NlVCiUcHRA5SNg,1172
|
|
501
|
-
orionis-0.
|
|
502
|
-
orionis-0.
|
|
503
|
-
orionis-0.
|
|
504
|
-
orionis-0.
|
|
505
|
-
orionis-0.
|
|
487
|
+
orionis-0.429.0.dist-info/METADATA,sha256=yklKSvYE_Uqu0B2ROIZ-wMmRoTdZ4gcJDqpkQTW_2Zc,4772
|
|
488
|
+
orionis-0.429.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
489
|
+
orionis-0.429.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
490
|
+
orionis-0.429.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
491
|
+
orionis-0.429.0.dist-info/RECORD,,
|
orionis/_console/__init__.py
DELETED
|
File without changes
|
|
File without changes
|