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.
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/PKG-INFO +5 -5
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/pyproject.toml +4 -4
- robotcode_runner-0.109.3/src/robotcode/runner/__version__.py +1 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/discover/discover.py +5 -5
- robotcode_runner-0.109.1/src/robotcode/runner/__version__.py +0 -1
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/.gitignore +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/LICENSE.txt +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/README.md +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/__init__.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/__init__.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/discover/__init__.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/libdoc.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/rebot.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/robot.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/testdoc.py +0 -0
- {robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/hooks.py +0 -0
- {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.
|
|
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.
|
|
29
|
-
Requires-Dist: robotcode-plugin==0.109.
|
|
30
|
-
Requires-Dist: robotcode-robot==0.109.
|
|
31
|
-
Requires-Dist: robotcode==0.109.
|
|
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.
|
|
32
|
-
"robotcode-modifiers==0.109.
|
|
33
|
-
"robotcode-plugin==0.109.
|
|
34
|
-
"robotcode==0.109.
|
|
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"
|
{robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/discover/discover.py
RENAMED
|
@@ -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: ",
|
|
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: ",
|
|
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: ",
|
|
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: ",
|
|
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: ",
|
|
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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_runner-0.109.1 → robotcode_runner-0.109.3}/src/robotcode/runner/cli/discover/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|