orionis 0.596.0__py3-none-any.whl → 0.598.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.
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.596.0"
8
+ VERSION = "0.598.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -1,3 +1,4 @@
1
+ import inspect
1
2
  import io
2
3
  import json
3
4
  import logging
@@ -41,7 +42,6 @@ from orionis.test.validators import (
41
42
  ValidWorkers,
42
43
  )
43
44
  from orionis.test.view.render import TestingResultRender
44
- import inspect
45
45
 
46
46
  class UnitTest(IUnitTest):
47
47
  """
@@ -170,4 +170,4 @@ class TestDumper(ITestDumper):
170
170
 
171
171
  # Restore the original stdout and stderr
172
172
  sys.stdout = original_stdout
173
- sys.stderr = original_stderr
173
+ sys.stderr = original_stderr
@@ -272,7 +272,7 @@ class TestPrinter(ITestPrinter):
272
272
  # Create and return a Rich Progress bar instance with custom columns and settings
273
273
  return Progress(
274
274
  TextColumn("[cyan]{task.description}"), # Task description in cyan
275
- BarColumn(), # Visual progress bar
275
+ BarColumn(bar_width=self.__panel_width), # Set custom bar width (adjust -30 as needed)
276
276
  TaskProgressColumn(), # Percentage completion indicator
277
277
  console=self.__rich_console, # Output to the configured Rich console
278
278
  transient=True, # Remove the bar after completion
@@ -1,7 +1,7 @@
1
- from pathlib import Path
2
- from typing import Dict, List, Optional, Tuple
3
1
  import json
4
2
  import sqlite3
3
+ from pathlib import Path
4
+ from typing import Dict, List, Optional, Tuple
5
5
  from orionis.test.contracts.logs import ITestLogs
6
6
  from orionis.test.exceptions import OrionisTestPersistenceError, OrionisTestValueError
7
7
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.596.0
3
+ Version: 0.598.0
4
4
  Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
5
  Home-page: https://github.com/orionis-framework/framework
6
6
  Author: Raul Mauricio Uñate Castro
@@ -217,7 +217,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=irwkjMiq-HpsbJxAOnhjji
217
217
  orionis/foundation/providers/testing_provider.py,sha256=2akFnabtH_cV_7z_2cCL7u8cPCGvCJAmlhMcnlCrc4c,3742
218
218
  orionis/foundation/providers/workers_provider.py,sha256=P_YtJuPNrdJAQJkAqI11KI0c6GSB9NqIuuCKpRytE0g,3937
219
219
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
- orionis/metadata/framework.py,sha256=sUzKs6LpZU8yw5MtYjz8cMhwVXBKHMrKBgRhhrdDNH4,4109
220
+ orionis/metadata/framework.py,sha256=MJYIymXuxRwzGoMWBe6cNLuadE6lvS-SJKSLJhBmXiw,4109
221
221
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
222
222
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
223
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -372,7 +372,7 @@ orionis/test/contracts/render.py,sha256=wpDQzUtT0r8KFZ7zPcxWHXQ1EVNKxzA_rZ6ZKUcZ
372
372
  orionis/test/contracts/test_result.py,sha256=SNXJ2UerkweYn7uCT0i0HmMGP0XBrL_9KJs-0ZvIYU4,4002
373
373
  orionis/test/contracts/unit_test.py,sha256=EyidHoOPJItwgkBWGYY1TymbNklyn2EUXnghVvW4htc,4652
374
374
  orionis/test/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
375
- orionis/test/core/unit_test.py,sha256=WrV4WDU-oNhwzeDeJIqQbyNYNwoO8CL3C0cD7IHtUMM,72952
375
+ orionis/test/core/unit_test.py,sha256=3fj_u1fJHhnitfLfcAL3-KeEc_Zt-mQNX9Np4sPxrbY,72952
376
376
  orionis/test/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
377
  orionis/test/entities/result.py,sha256=eZ6UIqGmFW8FZ9x8PB_MZbLAc-SAuUyi4FUcMYIZzGo,4777
378
378
  orionis/test/enums/__init__.py,sha256=M3imAgMvKFTKg55FbtVoY3zxj7QRY9AfaUWxiSZVvn4,66
@@ -384,10 +384,10 @@ orionis/test/exceptions/persistence.py,sha256=8Oakaey35DpByLoGnfbwHxFKntxgWaGl49
384
384
  orionis/test/exceptions/runtime.py,sha256=h9gQ0pS8tJTmuXNG-GHky8tTqpdz-cNqkntOOlRXZJg,612
385
385
  orionis/test/exceptions/value.py,sha256=CoqYOkViU_RaKCMNpB82tgEsR3XhI1pw6YQ8sH8CJh4,588
386
386
  orionis/test/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
387
- orionis/test/output/dumper.py,sha256=qJDyVvl3MO0Uinr6z9TYYdDTqHNwwM0PcoDNNkTpAnA,5908
388
- orionis/test/output/printer.py,sha256=M33HhDQBRxB-C-myOqPFSkTvfLyDCc424uVqJg40NYc,29575
387
+ orionis/test/output/dumper.py,sha256=_FPetJq96fiWJhN29gMG8Rt6MEEgiyFHC5k95ACNtKY,5906
388
+ orionis/test/output/printer.py,sha256=SL2CFwq6AY8R-xwFERhhaPLUk7LoP40w81VHxK3uicA,29597
389
389
  orionis/test/records/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
- orionis/test/records/logs.py,sha256=N5MczDDZ8HqyTCLgb4ikzAQzyzl2JhKHNVd-KGzAG20,22081
390
+ orionis/test/records/logs.py,sha256=YeEaWVzgts8sPtz2_QadGHmgfKahE0OptpF6upu4zq0,22081
391
391
  orionis/test/validators/__init__.py,sha256=mhzMkpLPTyI8GMXYevIibRf1PnRDvSJLLDwjGhnvxes,875
392
392
  orionis/test/validators/base_path.py,sha256=wAn5_HG0vQ5GH7wDKriO33Ijl1L1F3882BH67oraJnQ,1477
393
393
  orionis/test/validators/execution_mode.py,sha256=YnrQlnIaoPtM0xjW7jJ2170m1aHwAPPIZBjSVe9g2QM,1693
@@ -405,8 +405,8 @@ orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnI
405
405
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
406
  orionis/test/view/render.py,sha256=R55ykeRs0wDKcdTf4O1YZ8GDHTFmJ0IK6VQkbJkYUvo,5571
407
407
  orionis/test/view/report.stub,sha256=QLqqCdRoENr3ECiritRB3DO_MOjRQvgBh5jxZ3Hs1r0,28189
408
- orionis-0.596.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
409
- orionis-0.596.0.dist-info/METADATA,sha256=a6DmmAOALWeUCAIT35A25CxM0MMNAum-F0OfCxmNGNk,4801
410
- orionis-0.596.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
411
- orionis-0.596.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
412
- orionis-0.596.0.dist-info/RECORD,,
408
+ orionis-0.598.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
409
+ orionis-0.598.0.dist-info/METADATA,sha256=Snv4JVh27xSiQyPzsNsgXoXBbBGvRHM-stIwprIrkKE,4801
410
+ orionis-0.598.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
411
+ orionis-0.598.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
412
+ orionis-0.598.0.dist-info/RECORD,,