robotcode-runner 0.109.1__tar.gz → 0.109.3__tar.gz

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 (17) hide show
  1. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/PKG-INFO +5 -5
  2. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/pyproject.toml +4 -4
  3. robotcode_runner-0.109.3/src/robotcode/runner/__version__.py +1 -0
  4. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/discover/discover.py +5 -5
  5. robotcode_runner-0.109.1/src/robotcode/runner/__version__.py +0 -1
  6. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/.gitignore +0 -0
  7. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/LICENSE.txt +0 -0
  8. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/README.md +0 -0
  9. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/__init__.py +0 -0
  10. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/__init__.py +0 -0
  11. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/discover/__init__.py +0 -0
  12. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/libdoc.py +0 -0
  13. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/rebot.py +0 -0
  14. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/robot.py +0 -0
  15. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/testdoc.py +0 -0
  16. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/hooks.py +0 -0
  17. {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode-runner
3
- Version: 0.109.1
3
+ Version: 0.109.3
4
4
  Summary: RobotCode runner for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://opencollective.com/robotcode
@@ -25,10 +25,10 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
25
25
  Classifier: Topic :: Utilities
26
26
  Classifier: Typing :: Typed
27
27
  Requires-Python: >=3.8
28
- Requires-Dist: robotcode-modifiers==0.109.1
29
- Requires-Dist: robotcode-plugin==0.109.1
30
- Requires-Dist: robotcode-robot==0.109.1
31
- Requires-Dist: robotcode==0.109.1
28
+ Requires-Dist: robotcode-modifiers==0.109.3
29
+ Requires-Dist: robotcode-plugin==0.109.3
30
+ Requires-Dist: robotcode-robot==0.109.3
31
+ Requires-Dist: robotcode==0.109.3
32
32
  Requires-Dist: robotframework>=4.1.0
33
33
  Description-Content-Type: text/markdown
34
34
 
@@ -28,10 +28,10 @@ classifiers = [
28
28
  dynamic = ["version"]
29
29
  dependencies = [
30
30
  "robotframework>=4.1.0",
31
- "robotcode-robot==0.109.1",
32
- "robotcode-modifiers==0.109.1",
33
- "robotcode-plugin==0.109.1",
34
- "robotcode==0.109.1",
31
+ "robotcode-robot==0.109.3",
32
+ "robotcode-modifiers==0.109.3",
33
+ "robotcode-plugin==0.109.3",
34
+ "robotcode==0.109.3",
35
35
  ]
36
36
 
37
37
  [project.entry-points.robotcode]
@@ -0,0 +1 @@
1
+ __version__ = "0.109.3"
@@ -563,19 +563,19 @@ def print_statistics(app: Application, suite: TestSuite, collector: Collector) -
563
563
  def print() -> Iterable[str]:
564
564
  yield click.style("Statistics:", underline=True, fg="blue")
565
565
  yield os.linesep
566
- yield click.style(" - Suites: ", underline=True, bold=True, fg="blue")
566
+ yield click.style(" - Suites: ", bold=True, fg="blue")
567
567
  yield f"{collector.statistics.suites}{os.linesep}"
568
568
  if collector.statistics.suites_with_tests:
569
- yield click.style(" - Suites with tests: ", underline=True, bold=True, fg="blue")
569
+ yield click.style(" - Suites with tests: ", bold=True, fg="blue")
570
570
  yield f"{collector.statistics.suites_with_tests}{os.linesep}"
571
571
  if collector.statistics.suites_with_tasks:
572
- yield click.style(" - Suites with tasks: ", underline=True, bold=True, fg="blue")
572
+ yield click.style(" - Suites with tasks: ", bold=True, fg="blue")
573
573
  yield f"{collector.statistics.suites_with_tasks}{os.linesep}"
574
574
  if collector.statistics.tests:
575
- yield click.style(" - Tests: ", underline=True, bold=True, fg="blue")
575
+ yield click.style(" - Tests: ", bold=True, fg="blue")
576
576
  yield f"{collector.statistics.tests}{os.linesep}"
577
577
  if collector.statistics.tasks:
578
- yield click.style(" - Tasks: ", underline=True, bold=True, fg="blue")
578
+ yield click.style(" - Tasks: ", bold=True, fg="blue")
579
579
  yield f"{collector.statistics.tasks}{os.linesep}"
580
580
 
581
581
  app.echo_via_pager(print())
@@ -1 +0,0 @@
1
- __version__ = "0.109.1"