hardpy 0.10.1__py3-none-any.whl → 0.11.1__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.
Files changed (35) hide show
  1. hardpy/__init__.py +10 -2
  2. hardpy/cli/cli.py +91 -13
  3. hardpy/cli/template.py +0 -4
  4. hardpy/common/config.py +17 -21
  5. hardpy/common/stand_cloud/__init__.py +2 -1
  6. hardpy/common/stand_cloud/connector.py +32 -38
  7. hardpy/hardpy_panel/api.py +24 -2
  8. hardpy/hardpy_panel/frontend/dist/asset-manifest.json +3 -3
  9. hardpy/hardpy_panel/frontend/dist/index.html +1 -1
  10. hardpy/hardpy_panel/frontend/dist/static/js/main.fb8b84a3.js +3 -0
  11. hardpy/hardpy_panel/frontend/dist/static/js/main.fb8b84a3.js.map +1 -0
  12. hardpy/pytest_hardpy/db/base_store.py +7 -2
  13. hardpy/pytest_hardpy/db/const.py +3 -0
  14. hardpy/pytest_hardpy/db/schema/v1.py +22 -0
  15. hardpy/pytest_hardpy/plugin.py +27 -20
  16. hardpy/pytest_hardpy/pytest_call.py +30 -41
  17. hardpy/pytest_hardpy/pytest_wrapper.py +21 -17
  18. hardpy/pytest_hardpy/reporter/base.py +9 -4
  19. hardpy/pytest_hardpy/reporter/hook_reporter.py +7 -0
  20. hardpy/pytest_hardpy/result/__init__.py +4 -0
  21. hardpy/pytest_hardpy/result/couchdb_config.py +6 -8
  22. hardpy/pytest_hardpy/result/report_loader/stand_cloud_loader.py +6 -9
  23. hardpy/pytest_hardpy/result/report_reader/stand_cloud_reader.py +84 -0
  24. hardpy/pytest_hardpy/utils/__init__.py +2 -0
  25. hardpy/pytest_hardpy/utils/connection_data.py +0 -4
  26. hardpy/pytest_hardpy/utils/dialog_box.py +61 -8
  27. hardpy/pytest_hardpy/utils/exception.py +1 -0
  28. {hardpy-0.10.1.dist-info → hardpy-0.11.1.dist-info}/METADATA +1 -1
  29. {hardpy-0.10.1.dist-info → hardpy-0.11.1.dist-info}/RECORD +33 -32
  30. hardpy/hardpy_panel/frontend/dist/static/js/main.8a7d8f7d.js +0 -3
  31. hardpy/hardpy_panel/frontend/dist/static/js/main.8a7d8f7d.js.map +0 -1
  32. /hardpy/hardpy_panel/frontend/dist/static/js/{main.8a7d8f7d.js.LICENSE.txt → main.fb8b84a3.js.LICENSE.txt} +0 -0
  33. {hardpy-0.10.1.dist-info → hardpy-0.11.1.dist-info}/WHEEL +0 -0
  34. {hardpy-0.10.1.dist-info → hardpy-0.11.1.dist-info}/entry_points.txt +0 -0
  35. {hardpy-0.10.1.dist-info → hardpy-0.11.1.dist-info}/licenses/LICENSE +0 -0
@@ -184,6 +184,7 @@ class StepWidget(IWidget):
184
184
  title (str): Step title
185
185
  text (str | None): Step text
186
186
  image (ImageComponent | None): Step image
187
+ html (HTMLComponent | None): Step html
187
188
 
188
189
  Raises:
189
190
  WidgetInfoError: If the text or widget are not provided.
@@ -194,16 +195,19 @@ class StepWidget(IWidget):
194
195
  title: str,
195
196
  text: str | None,
196
197
  image: ImageComponent | None = None,
198
+ html: HTMLComponent | None = None,
197
199
  ) -> None:
198
200
  super().__init__(WidgetType.STEP)
199
- if text is None and image is None:
200
- msg = "Text or image must be provided"
201
+ if text is None and image is None and html is None:
202
+ msg = "Text, image and html must be provided"
201
203
  raise WidgetInfoError(msg)
202
204
  self.info["title"] = title
203
205
  if isinstance(text, str):
204
206
  self.info["text"] = text
205
207
  if isinstance(image, ImageComponent):
206
208
  self.info["image"] = image.__dict__
209
+ if isinstance(html, HTMLComponent):
210
+ self.info["html"] = html.__dict__
207
211
 
208
212
  def convert_data(self, input_data: str) -> bool: # noqa: ARG002
209
213
  """Get the step widget data in the correct format.
@@ -264,7 +268,7 @@ class ImageComponent:
264
268
  width: int = 100,
265
269
  border: int = 0,
266
270
  ) -> None:
267
- """Validate the image fields and defines the base64 if it does not exist.
271
+ """Initialize the image component.
268
272
 
269
273
  Args:
270
274
  address (str): image address
@@ -272,7 +276,7 @@ class ImageComponent:
272
276
  border (int): image border
273
277
 
274
278
  Raises:
275
- ImageError: If both address and base64data are specified.
279
+ ImageError: If both address and base64data are specified
276
280
  """
277
281
  if width < 1:
278
282
  msg = "Width must be positive"
@@ -285,9 +289,9 @@ class ImageComponent:
285
289
  try:
286
290
  with open(address, "rb") as file: # noqa: PTH123
287
291
  file_data = file.read()
288
- except FileNotFoundError:
292
+ except FileNotFoundError as exc:
289
293
  msg = "The image address is invalid"
290
- raise ImageError(msg) # noqa: B904
294
+ raise ImageError(msg) from exc
291
295
  self.address = address
292
296
  self.width = width
293
297
  self.border = border
@@ -297,7 +301,7 @@ class ImageComponent:
297
301
  """Convert ImageComponent to dictionary.
298
302
 
299
303
  Returns:
300
- dict: ImageComponent dictionary.
304
+ dict: ImageComponent dictionary
301
305
  """
302
306
  return {
303
307
  "address": self.address,
@@ -307,6 +311,51 @@ class ImageComponent:
307
311
  }
308
312
 
309
313
 
314
+ class HTMLComponent:
315
+ """HTML component."""
316
+
317
+ def __init__(
318
+ self,
319
+ html: str,
320
+ width: int = 100,
321
+ border: int = 0,
322
+ is_raw_html: bool = True,
323
+ ) -> None:
324
+ """Initialize the HTML component.
325
+
326
+ Args:
327
+ html (str): html string or URL
328
+ width (int): html component width
329
+ border (int): html component border
330
+ is_raw_html (bool): True if the html code is raw, else False
331
+ """
332
+ if width < 1:
333
+ msg = "Width must be positive"
334
+ raise WidgetInfoError(msg)
335
+
336
+ if border < 0:
337
+ msg = "Border must be non-negative"
338
+ raise WidgetInfoError(msg)
339
+
340
+ self.code_or_url = html
341
+ self.width = width
342
+ self.border = border
343
+ self.is_raw_html = is_raw_html
344
+
345
+ def to_dict(self) -> dict:
346
+ """Convert HtmlComponent to dictionary.
347
+
348
+ Returns:
349
+ dict: HtmlComponent dictionary.
350
+ """
351
+ return {
352
+ "code_or_url": self.code_or_url,
353
+ "width": self.width,
354
+ "border": self.border,
355
+ "is_raw_html": self.is_raw_html,
356
+ }
357
+
358
+
310
359
  @dataclass
311
360
  class DialogBox:
312
361
  """Dialog box data.
@@ -319,16 +368,18 @@ class DialogBox:
319
368
  font_size (int): font size
320
369
  """
321
370
 
322
- def __init__(
371
+ def __init__( # noqa: PLR0913
323
372
  self,
324
373
  dialog_text: str,
325
374
  title_bar: str | None = None,
326
375
  widget: IWidget | None = None,
327
376
  image: ImageComponent | None = None,
377
+ html: HTMLComponent | None = None,
328
378
  font_size: int = 14,
329
379
  ) -> None:
330
380
  self.widget: IWidget = BaseWidget() if widget is None else widget
331
381
  self.image: ImageComponent | None = image
382
+ self.html: HTMLComponent | None = html
332
383
  self.dialog_text: str = dialog_text
333
384
  self.title_bar: str | None = title_bar
334
385
  self.visible: bool = True
@@ -349,4 +400,6 @@ class DialogBox:
349
400
  dbx_dict["widget"] = deepcopy(self.widget.__dict__)
350
401
  if self.image:
351
402
  dbx_dict["image"] = deepcopy(self.image.__dict__)
403
+ if self.html:
404
+ dbx_dict["html"] = deepcopy(self.html.__dict__)
352
405
  return dbx_dict
@@ -43,6 +43,7 @@ class WidgetInfoError(HardpyError):
43
43
  def __init__(self, message: str) -> None:
44
44
  super().__init__(message)
45
45
 
46
+
46
47
  class ImageError(HardpyError):
47
48
  """The image info is not correct."""
48
49
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hardpy
3
- Version: 0.10.1
3
+ Version: 0.11.1
4
4
  Summary: HardPy library for device testing
5
5
  Project-URL: Homepage, https://github.com/everypinio/hardpy/
6
6
  Project-URL: Documentation, https://everypinio.github.io/hardpy/
@@ -1,20 +1,20 @@
1
- hardpy/__init__.py,sha256=WX_p5lKywria7tlZulIKTdPhgG-F_Soic1eQa25_of8,1918
1
+ hardpy/__init__.py,sha256=uk-xLjGq0eR0qEj_oWwiuvq7RPAT6sTOIk8R26fLuOE,2065
2
2
  hardpy/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- hardpy/cli/cli.py,sha256=EzyTc8C771NaVnwLed9tAauX8MHVhdxmWetKOfqWFBk,6538
4
- hardpy/cli/template.py,sha256=a9BZX8uFbIwyGfUex0PWGVirZ6GlkVpfpAdNsP_fqYo,6478
3
+ hardpy/cli/cli.py,sha256=bBuxMfhE-nSYwGpKR8XuLZcZaDwdsK7smb5-O9cj3t4,8779
4
+ hardpy/cli/template.py,sha256=ItgD2DSxxFiW7JOXRXNAT5KrBKe5kqDxQIRKLV3Kd0s,6352
5
5
  hardpy/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- hardpy/common/config.py,sha256=IkY3jTCmjzmIqXBPGhBPQp2yEx8SzI00c5WrEspIhsQ,5077
7
- hardpy/common/stand_cloud/__init__.py,sha256=iOLOLdz06j8TLZBzHbYYuc0V5RYdEuG9ZbAxSg3rP2s,412
8
- hardpy/common/stand_cloud/connector.py,sha256=RBG-RDQmKGDey7mT13KiDtl-0ETIGivF-3LGtI67Odg,7334
6
+ hardpy/common/config.py,sha256=nA2r2FrdKl0e-OqVvoa-3KvQ26Af-b86j7RMhGsWCPE,4966
7
+ hardpy/common/stand_cloud/__init__.py,sha256=fezdiYAehtT2H-GAef-xZU12CbmCRe64XHA9UB3kJDU,456
8
+ hardpy/common/stand_cloud/connector.py,sha256=lOLiEcMOKqllx-nfItCpstDMnm_XVi8xdrff2NSYva0,7018
9
9
  hardpy/common/stand_cloud/exception.py,sha256=eKkqu5ylDRIGN_yZhvz2xVGm49XmlZ8nryALgdRqpbY,287
10
10
  hardpy/common/stand_cloud/oauth_callback.py,sha256=GkADOnQ46HwxKEdgG_4bS1xX0ybfdQqMK3us-dMuHVw,3322
11
11
  hardpy/common/stand_cloud/registration.py,sha256=HxvTex-PxanfVMYt7jiOuxs2lSMt0-f5PbWBvbobvCU,6754
12
12
  hardpy/common/stand_cloud/token_storage.py,sha256=aH3-BRefCR-CHd0La6wOEwWxBZY8wOkdXh8WE86vLMo,856
13
13
  hardpy/hardpy_panel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- hardpy/hardpy_panel/api.py,sha256=2brUDu8gAV7WduZTlxfW_ax-Z7loE-RXzZgrUUd33L4,3073
15
- hardpy/hardpy_panel/frontend/dist/asset-manifest.json,sha256=PgtjHvX6HPsAzUrKaCldhGUmr0wyFIv8brWW2pitHUQ,2824
14
+ hardpy/hardpy_panel/api.py,sha256=BRY_RuYKPo0e1WdVCPS7iA46GzLIc5A4hLPvtagKqRc,3533
15
+ hardpy/hardpy_panel/frontend/dist/asset-manifest.json,sha256=eSmAD0a5xY2pvZpUyrsawbYB1wN7ONRsaERS6c3FR2M,2824
16
16
  hardpy/hardpy_panel/frontend/dist/favicon.ico,sha256=sgIk5PKUKEKBDpkSrc8dJgjpObp0iF82Mec0GpfKId4,15406
17
- hardpy/hardpy_panel/frontend/dist/index.html,sha256=zlW8GXzZZSz2Q3d1RP1LuNzuNFQk9oI1iemKzFbxC_o,656
17
+ hardpy/hardpy_panel/frontend/dist/index.html,sha256=ReKvf5Fsb9ZpwpIjy5y2CvR3V_oK2dTCAggdU6ILYiA,656
18
18
  hardpy/hardpy_panel/frontend/dist/logo192.png,sha256=E4K7drvhJCg9HcTpRihOXZhVJVBZ7-W97Se-3tDb46o,14485
19
19
  hardpy/hardpy_panel/frontend/dist/logo512.png,sha256=-fIMbqX7PYUpheK4kX1C1erRTe_hHZwFQYDLrAbhFRU,34188
20
20
  hardpy/hardpy_panel/frontend/dist/manifest.json,sha256=PfmJlN2JMJtHS6OnhU4b4X5wPQC_yRBdjesjoirObSA,502
@@ -32,9 +32,9 @@ hardpy/hardpy_panel/frontend/dist/static/js/blueprint-icons-all-paths.f63155c9.c
32
32
  hardpy/hardpy_panel/frontend/dist/static/js/blueprint-icons-all-paths.f63155c9.chunk.js.map,sha256=p1xKHRK4AZutkZsQHiWSNU61tYp7I3iUuyLLm3eqkHQ,2833
33
33
  hardpy/hardpy_panel/frontend/dist/static/js/blueprint-icons-split-paths-by-size-loader.52a072d3.chunk.js,sha256=Jl5xm_jQ9IXKhCagHHvnIhwYXb379Q5FFBiqPoKdUIE,605
34
34
  hardpy/hardpy_panel/frontend/dist/static/js/blueprint-icons-split-paths-by-size-loader.52a072d3.chunk.js.map,sha256=amJiG2QaJMRR9Y2M0C2soOqd75xdQHhsVKjwrDSIIT0,2224
35
- hardpy/hardpy_panel/frontend/dist/static/js/main.8a7d8f7d.js,sha256=lb369nZXWvAWJvKBkONDxwjGgt8q1R5K8LjHmAig-uA,1067533
36
- hardpy/hardpy_panel/frontend/dist/static/js/main.8a7d8f7d.js.LICENSE.txt,sha256=ForPNukClWMEP3pF9LMYoU-ve-LsyCH-rYU8eLki_FY,2315
37
- hardpy/hardpy_panel/frontend/dist/static/js/main.8a7d8f7d.js.map,sha256=MwMn2EKAFx4ynoVjCcFuWYJO_iFS4j3FNVllq5oYYdA,5324603
35
+ hardpy/hardpy_panel/frontend/dist/static/js/main.fb8b84a3.js,sha256=P7SNLoxtL05KRld5YInGWNQouolJmUeQipzt_WQnVAU,1017440
36
+ hardpy/hardpy_panel/frontend/dist/static/js/main.fb8b84a3.js.LICENSE.txt,sha256=ForPNukClWMEP3pF9LMYoU-ve-LsyCH-rYU8eLki_FY,2315
37
+ hardpy/hardpy_panel/frontend/dist/static/js/main.fb8b84a3.js.map,sha256=zkEWQn20YM-8rGdgCVGeL6exckn_tsN1_7gRDj8k5Ik,5090116
38
38
  hardpy/hardpy_panel/frontend/dist/static/media/blueprint-icons-16.520846c6beb41df528c8.eot,sha256=PTCTrQYNHX2hIPUaYWtOKrI30-iQGXt_EGxq6JCXie0,117628
39
39
  hardpy/hardpy_panel/frontend/dist/static/media/blueprint-icons-16.5c52b39c697f2323ce8b.svg,sha256=lDCQy06aS-9bmhwuFOUs-EdcR8MP2wqwAwky5oamtkQ,509417
40
40
  hardpy/hardpy_panel/frontend/dist/static/media/blueprint-icons-16.84db1772f4bfb529f64f.woff,sha256=edyqQN0nw4dNBs1pgr7pQB7nJhhR6T_YfklFcG_fHj0,53344
@@ -47,40 +47,41 @@ hardpy/hardpy_panel/frontend/dist/static/media/blueprint-icons-20.afbadb627d43b7
47
47
  hardpy/hardpy_panel/frontend/dist/static/media/blueprint-icons-20.e857f5a5132b8bfa71a1.woff,sha256=mQZTxE1PyyAL16VWuASOvXlZFwuI4aCPvbrhfgpdIdU,55356
48
48
  hardpy/hardpy_panel/frontend/dist/static/media/logo_smol.5b16f92447a4a9e80331.png,sha256=E4K7drvhJCg9HcTpRihOXZhVJVBZ7-W97Se-3tDb46o,14485
49
49
  hardpy/pytest_hardpy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- hardpy/pytest_hardpy/plugin.py,sha256=dBgj_p7Re9BWHCXKUT8h5J8LGAXK0Jb_ac9fdtQ_q3A,17671
51
- hardpy/pytest_hardpy/pytest_call.py,sha256=S8v5XHm8iG_KcVeBHlb97aupGSWpadsaH_dfLLGTGEQ,12628
52
- hardpy/pytest_hardpy/pytest_wrapper.py,sha256=y9McSAzSIushZek2wmNooZDDnN_1TlxHoW-WG5Wk29M,5002
50
+ hardpy/pytest_hardpy/plugin.py,sha256=kpvLY6eNcEs1zLorJWhJybkidLUB501LTfTOtPjbMoo,18196
51
+ hardpy/pytest_hardpy/pytest_call.py,sha256=CL1cIGu5WLm0au7riQ-xVlX0_f8nmubIedBXxRX98tc,12319
52
+ hardpy/pytest_hardpy/pytest_wrapper.py,sha256=_eULTqbJhFj0uu3XPplS4WSrI_LJC_ZX2kA5t5YJ49U,5162
53
53
  hardpy/pytest_hardpy/db/__init__.py,sha256=G6y13JPh8HaH2O9E3_LTH_bTUVSgiezQFjDGaNIljec,557
54
54
  hardpy/pytest_hardpy/db/base_connector.py,sha256=5a476F5LwvFUfQ4Yc0Q6biacULDrCk8UHPlpc6n0NRQ,1111
55
55
  hardpy/pytest_hardpy/db/base_server.py,sha256=XqTff225iIymPYUGGEja9r9WOilVw7ljcAVp1M8VuAI,404
56
- hardpy/pytest_hardpy/db/base_store.py,sha256=9TA1BAU4_ARm4dxfhLRNWSnGV98z0rr9U1o0BibBe-U,3532
57
- hardpy/pytest_hardpy/db/const.py,sha256=MkKYBAf5_o4jaGM-vfprKbRXITb-ix7RqmNo3AMCI7o,894
56
+ hardpy/pytest_hardpy/db/base_store.py,sha256=xmtccsMhdMQkso5ptBk7UaCuS-nkyDgAq-ZN9Yw0joU,3740
57
+ hardpy/pytest_hardpy/db/const.py,sha256=aaiRkmqGu2P2BMkhautYV1bFeuGInqtHVl8OcaWeSFk,970
58
58
  hardpy/pytest_hardpy/db/runstore.py,sha256=tCXWo2AW0er3lbDcCqYbYxOBbINMZNtfnnjlIJpXmIA,949
59
59
  hardpy/pytest_hardpy/db/statestore.py,sha256=0sv4AqzwW_J34O-cb7aN3zmgULIVtZRi_qg4XvC2_L0,586
60
60
  hardpy/pytest_hardpy/db/schema/__init__.py,sha256=1S73W3PLQt8gX5Y33nbX1JdwLvnrtlKH4cElID3pwuc,263
61
- hardpy/pytest_hardpy/db/schema/v1.py,sha256=iEkcczMYo9TGs6dTzL5eR1k59rkOC8FDs4JRqGuoNAM,9454
61
+ hardpy/pytest_hardpy/db/schema/v1.py,sha256=_hFJNF6lwhb5xl09ccLrH1RvtMb0J7DaE1XBR8EtYUE,9804
62
62
  hardpy/pytest_hardpy/reporter/__init__.py,sha256=rztpM2HlLUpMOvad0JHbZU4Mk8PDDQyCFXLhpLktGQI,322
63
- hardpy/pytest_hardpy/reporter/base.py,sha256=o5Pbl89nWLCFd1mYiFdxCQ9d3FOb9oQ3eruYH60H5CQ,2517
64
- hardpy/pytest_hardpy/reporter/hook_reporter.py,sha256=PAmy-dcIectzbAd3NfZDi_IydtFXwY9_7HlbsgLhLvA,11585
63
+ hardpy/pytest_hardpy/reporter/base.py,sha256=IGVzKpOTN2uauhrUn3HWTyHhhMQFXAWcOvfo1EzDOkw,2707
64
+ hardpy/pytest_hardpy/reporter/hook_reporter.py,sha256=8cOlOgmLqDty4ib3p5gkZdi6ZAYqAFIjQhQ3Vm6AHGU,11952
65
65
  hardpy/pytest_hardpy/reporter/runner_reporter.py,sha256=YsK8wrLIulsixePG6WNfC4MagpKfhP5j0CUaXkcfeL0,790
66
- hardpy/pytest_hardpy/result/__init__.py,sha256=JEFxF8yCnBcUSkvRFIjOCTafMIQuMXCBL23Uj0vSX2E,469
67
- hardpy/pytest_hardpy/result/couchdb_config.py,sha256=rzUc2cg6uUnDo6RPHTaWR_RbmN_uZ77dWGCXQYz8iNk,3292
66
+ hardpy/pytest_hardpy/result/__init__.py,sha256=2afpuEuOcxYfIEOwWzsGZe960iQaPVCmsbYujijQg1s,592
67
+ hardpy/pytest_hardpy/result/couchdb_config.py,sha256=ujxyJYM2pdZzi3GZ2Zysbz2_ZeTRN5sQc8AGuzRJm_0,3243
68
68
  hardpy/pytest_hardpy/result/report_loader/__init__.py,sha256=wq5Y-_JW2ExCRnQ9VVesKmTToEQrcTY5RxNJIWaT9ag,374
69
69
  hardpy/pytest_hardpy/result/report_loader/couchdb_loader.py,sha256=KcZ0JkCgWhrj2J9M04JBDy0fpqtpVEYtu9GCLDG27pU,2255
70
- hardpy/pytest_hardpy/result/report_loader/stand_cloud_loader.py,sha256=RM6teBUvX5BlYUEHnElqIBvbbfx0G98vwjlCecI6FG8,2405
70
+ hardpy/pytest_hardpy/result/report_loader/stand_cloud_loader.py,sha256=lRPDGIOFquo-KcCYxR6C4vnfe1m_dBWENFN8IkNZDPc,2217
71
71
  hardpy/pytest_hardpy/result/report_reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
72
  hardpy/pytest_hardpy/result/report_reader/couchdb_reader.py,sha256=GrROwfTVyJaVLPBxkvOM35HCksFEnWm0aVI8FibPikg,5911
73
- hardpy/pytest_hardpy/utils/__init__.py,sha256=eNvQ5OjiLHLj9Rn2y4hyIexano1CUNhSMhzaw3IUwn4,1471
74
- hardpy/pytest_hardpy/utils/connection_data.py,sha256=H5WyQhyRolXkZPrSDAlNRm0TRUcJAsHC7_27MjRa85w,564
73
+ hardpy/pytest_hardpy/result/report_reader/stand_cloud_reader.py,sha256=H-qXND3X1dZfwzg_9ch5rIltZi9e_GxMqc5uG0OkGdQ,2771
74
+ hardpy/pytest_hardpy/utils/__init__.py,sha256=xA4g-d4Z75phko-Vay7ZRSxzIO3FB5-IAiyMyXLZnoE,1511
75
+ hardpy/pytest_hardpy/utils/connection_data.py,sha256=Oq1LdIpmYkwakNCNwAPD-FTH4W7lj_v8vYkQCqJTof8,449
75
76
  hardpy/pytest_hardpy/utils/const.py,sha256=RuzRmnpvmUylRbj8CxtaVbo7J9kp6rELvjPdfUzMQLU,407
76
- hardpy/pytest_hardpy/utils/dialog_box.py,sha256=aUakpMihJTLRaAWm1Ybt2SPYGBL5Gt9pOmhIMYEHIls,9708
77
- hardpy/pytest_hardpy/utils/exception.py,sha256=kLvJpAppjFsdnhw7zhUHGMLhS946O36H2-F5wrTeVVE,1380
77
+ hardpy/pytest_hardpy/utils/dialog_box.py,sha256=LNukQ7ukUzLUFmwwH6L6M8wWmF-Mo4HF-UpVkyf8nY8,11224
78
+ hardpy/pytest_hardpy/utils/exception.py,sha256=bsyExxcFrpArO1WK-tiqwYuPtVC43jj3eHquLcR-3vc,1381
78
79
  hardpy/pytest_hardpy/utils/machineid.py,sha256=6JAzUt7KtjTYn8kL9hSMaCQ20U8liH-zDT9v-5Ch7Q8,296
79
80
  hardpy/pytest_hardpy/utils/node_info.py,sha256=mA7u1KHHLIq70ZNOOF7NVlxMmfhwGanVyXpBNfBWQDk,4121
80
81
  hardpy/pytest_hardpy/utils/progress_calculator.py,sha256=TPl2gG0ZSvMe8otPythhF9hkD6fa6-mJAhy9yI83-yE,1071
81
82
  hardpy/pytest_hardpy/utils/singleton.py,sha256=tjUGs48o_vBeVpRsEBZEOTCoCUikpIFmQ1c3rsfymso,948
82
- hardpy-0.10.1.dist-info/METADATA,sha256=XglDrNrTyGzBPJt7pGnQQiL8KerkYGEj320TQpIB4mg,3909
83
- hardpy-0.10.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
84
- hardpy-0.10.1.dist-info/entry_points.txt,sha256=nL2sMkKMScNaOE0IPkYnu9Yr-BUswZvGSrwY-SxHY3E,102
85
- hardpy-0.10.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
86
- hardpy-0.10.1.dist-info/RECORD,,
83
+ hardpy-0.11.1.dist-info/METADATA,sha256=HrXnRUpVUaEsHdFPoYSRAuTw_77lnHLZBb6tK-3HjCo,3909
84
+ hardpy-0.11.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
85
+ hardpy-0.11.1.dist-info/entry_points.txt,sha256=nL2sMkKMScNaOE0IPkYnu9Yr-BUswZvGSrwY-SxHY3E,102
86
+ hardpy-0.11.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
87
+ hardpy-0.11.1.dist-info/RECORD,,