orionis 0.339.0__py3-none-any.whl → 0.342.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/metadata/framework.py +1 -1
- orionis/test/cases/test_async.py +1 -1
- orionis/test/cases/test_case.py +1 -1
- orionis/test/cases/test_sync.py +1 -1
- orionis/test/contracts/unit_test.py +2 -2
- orionis/test/entities/test_result.py +1 -1
- orionis/test/logs/history.py +3 -4
- orionis/test/output/dumper.py +2 -2
- orionis/test/output/printer.py +3 -3
- orionis/test/suite/unit_test.py +3 -6
- orionis/test/view/render.py +2 -2
- {orionis-0.339.0.dist-info → orionis-0.342.0.dist-info}/METADATA +1 -1
- {orionis-0.339.0.dist-info → orionis-0.342.0.dist-info}/RECORD +17 -17
- {orionis-0.339.0.dist-info → orionis-0.342.0.dist-info}/WHEEL +0 -0
- {orionis-0.339.0.dist-info → orionis-0.342.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.339.0.dist-info → orionis-0.342.0.dist-info}/top_level.txt +0 -0
- {orionis-0.339.0.dist-info → orionis-0.342.0.dist-info}/zip-safe +0 -0
orionis/metadata/framework.py
CHANGED
orionis/test/cases/test_async.py
CHANGED
orionis/test/cases/test_case.py
CHANGED
orionis/test/cases/test_sync.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from abc import ABC, abstractmethod
|
|
2
2
|
from typing import Any, Dict, List, Optional
|
|
3
|
-
from orionis.services.system
|
|
4
|
-
from orionis.test.enums
|
|
3
|
+
from orionis.services.system import Workers
|
|
4
|
+
from orionis.test.enums import ExecutionMode
|
|
5
5
|
|
|
6
6
|
class IUnitTest(ABC):
|
|
7
7
|
|
orionis/test/logs/history.py
CHANGED
|
@@ -3,10 +3,9 @@ import re
|
|
|
3
3
|
import sqlite3
|
|
4
4
|
from pathlib import Path
|
|
5
5
|
from typing import Dict, List, Optional, Tuple
|
|
6
|
-
from orionis.services.environment
|
|
7
|
-
from orionis.test.exceptions
|
|
8
|
-
from orionis.test.
|
|
9
|
-
from orionis.test.contracts.history import ITestHistory
|
|
6
|
+
from orionis.services.environment import Env
|
|
7
|
+
from orionis.test.exceptions import OrionisTestPersistenceError, OrionisTestValueError
|
|
8
|
+
from orionis.test.contracts import ITestHistory
|
|
10
9
|
|
|
11
10
|
class TestHistory(ITestHistory):
|
|
12
11
|
|
orionis/test/output/dumper.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import sys
|
|
3
|
-
from orionis.test.exceptions
|
|
4
|
-
from orionis.test.contracts
|
|
3
|
+
from orionis.test.exceptions import OrionisTestRuntimeError
|
|
4
|
+
from orionis.test.contracts import ITestDumper
|
|
5
5
|
|
|
6
6
|
class TestDumper(ITestDumper):
|
|
7
7
|
"""
|
orionis/test/output/printer.py
CHANGED
|
@@ -7,9 +7,9 @@ from rich.panel import Panel
|
|
|
7
7
|
from rich.syntax import Syntax
|
|
8
8
|
from rich.table import Table
|
|
9
9
|
from rich.text import Text
|
|
10
|
-
from orionis.services.introspection.instances
|
|
11
|
-
from orionis.test.contracts
|
|
12
|
-
from orionis.test.enums
|
|
10
|
+
from orionis.services.introspection.instances import ReflectionInstance
|
|
11
|
+
from orionis.test.contracts import ITestPrinter
|
|
12
|
+
from orionis.test.enums import TestStatus
|
|
13
13
|
|
|
14
14
|
class TestPrinter(ITestPrinter):
|
|
15
15
|
|
orionis/test/suite/unit_test.py
CHANGED
|
@@ -13,12 +13,9 @@ from typing import Any, Dict, List, Optional, Tuple
|
|
|
13
13
|
from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
|
|
14
14
|
from orionis.services.system.workers import Workers
|
|
15
15
|
from orionis.test.entities import TestResult
|
|
16
|
-
from orionis.test.enums import ExecutionMode
|
|
17
|
-
from orionis.test.
|
|
18
|
-
from orionis.test.
|
|
19
|
-
from orionis.test.exceptions import OrionisTestPersistenceError
|
|
20
|
-
from orionis.test.exceptions import OrionisTestValueError
|
|
21
|
-
from orionis.test.logs.history import TestHistory
|
|
16
|
+
from orionis.test.enums import ExecutionMode, TestStatus
|
|
17
|
+
from orionis.test.exceptions import OrionisTestFailureException, OrionisTestPersistenceError, OrionisTestValueError
|
|
18
|
+
from orionis.test.logs import TestHistory
|
|
22
19
|
from orionis.test.contracts import IUnitTest
|
|
23
20
|
from orionis.test.output import TestPrinter
|
|
24
21
|
from orionis.test.view import TestingResultRender
|
orionis/test/view/render.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import os
|
|
3
3
|
from pathlib import Path
|
|
4
|
-
from orionis.services.environment
|
|
5
|
-
from orionis.test.logs
|
|
4
|
+
from orionis.services.environment import Env
|
|
5
|
+
from orionis.test.logs import TestHistory
|
|
6
6
|
|
|
7
7
|
class TestingResultRender:
|
|
8
8
|
|
|
@@ -223,7 +223,7 @@ orionis/foundation/exceptions/__init__.py,sha256=IqjZ970Nsck5dMaaknbyn5X4cj796Jq
|
|
|
223
223
|
orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
|
|
224
224
|
orionis/foundation/exceptions/value_error.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
|
|
225
225
|
orionis/metadata/__init__.py,sha256=4E7FOLUw8NMYkEjQ1-IA-x5PyfA3qsMnhx6QBkVzBKk,594
|
|
226
|
-
orionis/metadata/framework.py,sha256=
|
|
226
|
+
orionis/metadata/framework.py,sha256=7clVxPcBZ3gGcSrxwl7KlxhGEDt9aiTDErYV40pVKww,4960
|
|
227
227
|
orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
|
|
228
228
|
orionis/patterns/__init__.py,sha256=7OuCK1tjqHHU3xr_dQCWVQgdvWaYpeiNSAuQRsvCC0Y,167
|
|
229
229
|
orionis/patterns/singleton/__init__.py,sha256=5mdiQLrkfJ8uAryx_EjdREf8z-c9oIr8hanbr3E-dKA,152
|
|
@@ -310,16 +310,16 @@ orionis/support/wrapper/dicts/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5
|
|
|
310
310
|
orionis/test/__init__.py,sha256=A1h_bZ_M2ZtCiPLEiMqAX4zcVg6reSnM7AWRCuMEvGY,1604
|
|
311
311
|
orionis/test/test_suite.py,sha256=gTe0t-e00URScUGREovUYGH42U0VkxNTIChG3ibKHFs,5969
|
|
312
312
|
orionis/test/cases/__init__.py,sha256=9j77BpFS0Xdkf_fk196pLf-sdNfgfjAlwvc_M3Dx9s8,185
|
|
313
|
-
orionis/test/cases/test_async.py,sha256=
|
|
314
|
-
orionis/test/cases/test_case.py,sha256=
|
|
315
|
-
orionis/test/cases/test_sync.py,sha256=
|
|
313
|
+
orionis/test/cases/test_async.py,sha256=Jve4gZDz4cM8ORA3_v2pAq8q_QTWgJS_IiAkpf3UITY,1920
|
|
314
|
+
orionis/test/cases/test_case.py,sha256=agfqRMA-798gCl2sn6-A7wQXgLwF5IgmeBp3MjhlI40,1439
|
|
315
|
+
orionis/test/cases/test_sync.py,sha256=f5Z6RCuJ8A0RuFx4YqcxN561Rmxwwj7wzsnSga6c45k,735
|
|
316
316
|
orionis/test/contracts/__init__.py,sha256=G8BbcUflAXj5AgIw8hEMfsu9o_m397nGe9Ll6Xp0uok,232
|
|
317
317
|
orionis/test/contracts/dumper.py,sha256=5OqGc4GEXCXX76sCX185giQMyKwwZvlOv3I7tTwV2fQ,1324
|
|
318
318
|
orionis/test/contracts/history.py,sha256=v3vjWmvn73DF_C8Ur-aWdHUMrztX584mXKwYgsYQgCE,1435
|
|
319
319
|
orionis/test/contracts/printer.py,sha256=FcTii6uglVIfvsgbmG0lj3hv1RGmDWuDo0eo4Z8rMbQ,6014
|
|
320
|
-
orionis/test/contracts/unit_test.py,sha256=
|
|
320
|
+
orionis/test/contracts/unit_test.py,sha256=L5YvesP5KYLBsU-peqmJRuOymKVSDpcySIphQrbWcyQ,7763
|
|
321
321
|
orionis/test/entities/__init__.py,sha256=_PGno5MOxlsDYZR1iu8JOqPV6tAlTjSBAWaDiqQqa4c,72
|
|
322
|
-
orionis/test/entities/test_result.py,sha256=
|
|
322
|
+
orionis/test/entities/test_result.py,sha256=8HRLg32bRLZX8NWgsGimJbSG8aX6n0VpbUEG57ClTGo,3023
|
|
323
323
|
orionis/test/enums/__init__.py,sha256=0ICcr-gs82xub37ux5ab6YLBImAw7Q44bjWSWZJ9Aj0,132
|
|
324
324
|
orionis/test/enums/test_mode.py,sha256=CHstYZ180MEX84AjZIoyA1l8gKxFLp_eciLOj2in57E,481
|
|
325
325
|
orionis/test/enums/test_status.py,sha256=vNKRmp1lud_ZGTayf3A8wO_0vEYdFABy_oMw-RcEc1c,673
|
|
@@ -330,15 +330,15 @@ orionis/test/exceptions/test_persistence_error.py,sha256=yFgSmgEWM0VJkPuZNO7vm8f
|
|
|
330
330
|
orionis/test/exceptions/test_runtime_error.py,sha256=YL9cAjhm1gf4wkOXCY_pZPMDPb4Nm9jS1JH038EAZpA,470
|
|
331
331
|
orionis/test/exceptions/test_value_error.py,sha256=r3tVWTE3gNp7of2gXk71NN-VYoAlOpB0kulw0LOJ9mI,466
|
|
332
332
|
orionis/test/logs/__init__.py,sha256=9I68ZFtOgA-zLJ_-jLHv9uovc_Y2uuDfwbPjCGb4b6w,70
|
|
333
|
-
orionis/test/logs/history.py,sha256=
|
|
333
|
+
orionis/test/logs/history.py,sha256=Q2aSiroVP1oiKPbXAY3jl2KSNxu4NE6XL8HwSLIzhE4,13056
|
|
334
334
|
orionis/test/output/__init__.py,sha256=H6lyv-sXKSfwYBF0cdtRsLu8lAet-6uG1_cs55rBcl8,120
|
|
335
|
-
orionis/test/output/dumper.py,sha256=
|
|
336
|
-
orionis/test/output/printer.py,sha256=
|
|
335
|
+
orionis/test/output/dumper.py,sha256=ipaJXEBNNFZk_ftJ16VyOELm-65SDdu-f062KeH0OQ4,4254
|
|
336
|
+
orionis/test/output/printer.py,sha256=Meex3POE-wec2hMGqcIcPr4kKcvI5HfRtzpp2S4e3y8,16919
|
|
337
337
|
orionis/test/suite/__init__.py,sha256=5jgkmkeLwF26x3UxGXHZ7WZzlLMpuAQu9Fo1Rng0iEg,66
|
|
338
|
-
orionis/test/suite/unit_test.py,sha256=
|
|
338
|
+
orionis/test/suite/unit_test.py,sha256=4xFDYUW6GYoyCAh5MRMilwQN-BYB7CeWkDSf6IyBqLM,52137
|
|
339
339
|
orionis/test/view/__init__.py,sha256=2LWCbH_jT9Dc5a-wV3uxddDxgb6ZLayFQ84w_Cwae6o,84
|
|
340
|
-
orionis/test/view/render.py,sha256=
|
|
341
|
-
orionis-0.
|
|
340
|
+
orionis/test/view/render.py,sha256=N1zUp4wruevaYwvHB1T8CizrTLDL0UgP7B4zoKJia1w,4891
|
|
341
|
+
orionis-0.342.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
|
342
342
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
343
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
tests/example/test_example.py,sha256=4ebBTg7vjtA8INm1lhi0NFPpZBLr8TfI5qqU-73g4vc,585
|
|
@@ -439,8 +439,8 @@ tests/support/wrapper/test_services_wrapper_docdict.py,sha256=5cnxPqMWLAqKQck7wh
|
|
|
439
439
|
tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
440
|
tests/testing/test_testing_result.py,sha256=ypIHgSoWCy2GGJQU-RVYJ3adhPqlCSr0OrTlemQ6Wzc,4308
|
|
441
441
|
tests/testing/test_testing_unit.py,sha256=2mPUcogIM6hOuWXDQhStVrUyBzwkVl1ucqOT2WD7kN8,7390
|
|
442
|
-
orionis-0.
|
|
443
|
-
orionis-0.
|
|
444
|
-
orionis-0.
|
|
445
|
-
orionis-0.
|
|
446
|
-
orionis-0.
|
|
442
|
+
orionis-0.342.0.dist-info/METADATA,sha256=C_r6UlPVsRicr255N-wPUe3BFsULR7rEIRA3UqD4wpE,4772
|
|
443
|
+
orionis-0.342.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
444
|
+
orionis-0.342.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
445
|
+
orionis-0.342.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
446
|
+
orionis-0.342.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|