holado 0.2.1__py3-none-any.whl → 0.2.2__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.

Potentially problematic release.


This version of holado might be problematic. Click here for more details.

holado/__init__.py CHANGED
@@ -126,12 +126,16 @@ def initialize_session_context(session_kwargs=None):
126
126
  logger.debug("Initialized SessionContext")
127
127
 
128
128
 
129
- def holado_src_path():
129
+ def get_holado_path():
130
+ here = os.path.abspath(os.path.dirname(__file__))
131
+ return os.path.normpath(os.path.join(here, "..", ".."))
132
+
133
+ def get_holado_src_path():
130
134
  here = os.path.abspath(os.path.dirname(__file__))
131
135
  return os.path.normpath(os.path.join(here, ".."))
132
136
 
133
137
  def get_holado_module_names():
134
- lp = sorted(os.listdir(holado_src_path()))
138
+ lp = sorted(os.listdir(get_holado_src_path()))
135
139
  return [name for name in lp if name.startswith("holado_") and name not in ['holado_logging']]
136
140
 
137
141
  def import_modules(module_names):
@@ -211,7 +215,7 @@ def import_steps():
211
215
  from holado_core.common.exceptions.technical_exception import TechnicalException
212
216
  from holado_core.common.tools.tools import Tools
213
217
 
214
- lp = sorted(os.listdir(holado_src_path()))
218
+ lp = sorted(os.listdir(get_holado_src_path()))
215
219
  for module_name in lp:
216
220
  if module_name.startswith("holado_"):
217
221
  if with_behave:
@@ -234,7 +238,7 @@ def import_steps():
234
238
  def import_private_steps():
235
239
  from holado_core.common.tools.tools import Tools
236
240
 
237
- lp = sorted(os.listdir(holado_src_path()))
241
+ lp = sorted(os.listdir(get_holado_src_path()))
238
242
  for module_name in lp:
239
243
  if module_name.startswith("holado_"):
240
244
  if with_behave:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: holado
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: HolAdo framework
5
5
  Project-URL: Homepage, https://gitlab.com/holado_framework/python
6
6
  Project-URL: Issues, https://gitlab.com/holado_framework/python/-/issues
@@ -1,4 +1,4 @@
1
- holado/__init__.py,sha256=-MWoSieByPmA6IB29KbUhp_nIhu1SzksgRrGfZmvP0w,12497
1
+ holado/__init__.py,sha256=g9ZckLue7kTZVEpX2T4kteePc3N1alkGVqoRqvkpKYA,12655
2
2
  holado/holado_config.py,sha256=v6qmTYcO50Gjtq7jwpcVp79HMeWuf2wZCGLlKDaDFc8,2369
3
3
  holado/common/__init__.py,sha256=ZjXM-FRQgnfzRNXqcvJOGewDHVRR-U5-ugStSs8U2Xs,1525
4
4
  holado/common/context/__init__.py,sha256=3jJBLm8myrYF9jbdV1EhIA6BtnlmjX33eeoDpTzwmLA,1604
@@ -11,7 +11,7 @@ holado/common/handlers/object.py,sha256=SACbrBveQUebE4DQO0VaCMFNGgAKOfFnLy2RGQF4
11
11
  holado/common/handlers/undefined.py,sha256=a1Jq2yrRd0UjJqZndj8ZTLpg5e6FlFn3Cc5uMfkbnBM,1859
12
12
  holado/common/tools/__init__.py,sha256=z-T6zX_tOVkJjniTDA0KSKmdtosjfEhjaNa1-3g8wTs,1374
13
13
  holado/common/tools/gc_manager.py,sha256=TjQg7MisGRhxuiQ22hB3IuqNhnWCVEWpU253-rOjR0w,7611
14
- holado-0.2.1.dist-info/METADATA,sha256=fmRHxpTw_mZGxnoY4TTYXZr5QZZ91tY17SMAAk2DYeA,5703
15
- holado-0.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- holado-0.2.1.dist-info/licenses/LICENSE,sha256=IgGmNlcFHnbp7UWrLJqAFvs_HIgjJDTmjCNRircJLsk,1070
17
- holado-0.2.1.dist-info/RECORD,,
14
+ holado-0.2.2.dist-info/METADATA,sha256=CnNMzZStRNSJcg91NEdG5Z9GhMwWkPHV2Gwa7sq1HUU,5703
15
+ holado-0.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ holado-0.2.2.dist-info/licenses/LICENSE,sha256=IgGmNlcFHnbp7UWrLJqAFvs_HIgjJDTmjCNRircJLsk,1070
17
+ holado-0.2.2.dist-info/RECORD,,
File without changes