robotframework-pabot 2.19.0__tar.gz → 3.0.0__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.
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/PKG-INFO +1 -1
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/__init__.py +1 -1
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/pabot.py +7 -4
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/robotframework_pabot.egg-info/PKG-INFO +1 -1
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/LICENSE.txt +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/MANIFEST.in +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/README.md +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/pyproject.toml +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/setup.cfg +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/setup.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/SharedLibrary.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/arguments.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/clientwrapper.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/coordinatorwrapper.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/execution_items.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/pabotlib.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/py3/__init__.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/py3/client.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/py3/coordinator.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/py3/messages.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/py3/worker.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/result_merger.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/robotremoteserver.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/pabot/workerwrapper.py +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/robotframework_pabot.egg-info/SOURCES.txt +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/robotframework_pabot.egg-info/dependency_links.txt +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/robotframework_pabot.egg-info/entry_points.txt +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/robotframework_pabot.egg-info/requires.txt +0 -0
- {robotframework-pabot-2.19.0 → robotframework-pabot-3.0.0}/src/robotframework_pabot.egg-info/top_level.txt +0 -0
|
@@ -1505,7 +1505,10 @@ def _merge_one_run(
|
|
|
1505
1505
|
files, options, tests_root_name, copied_artifacts, invalid_xml_callback
|
|
1506
1506
|
)
|
|
1507
1507
|
_update_stats(resu, stats)
|
|
1508
|
-
|
|
1508
|
+
if ROBOT_VERSION >= "7.0" and options.get("legacyoutput"):
|
|
1509
|
+
resu.save(output_path, legacy_output=True)
|
|
1510
|
+
else:
|
|
1511
|
+
resu.save(output_path)
|
|
1509
1512
|
return output_path
|
|
1510
1513
|
|
|
1511
1514
|
|
|
@@ -1973,10 +1976,10 @@ def main_program(args):
|
|
|
1973
1976
|
def _group_suites(outs_dir, datasources, options, pabot_args):
|
|
1974
1977
|
suite_names = solve_suite_names(outs_dir, datasources, options, pabot_args)
|
|
1975
1978
|
_verify_depends(suite_names)
|
|
1976
|
-
|
|
1977
|
-
|
|
1979
|
+
ordered_suites = _preserve_order(suite_names, pabot_args.get("ordering"))
|
|
1980
|
+
shard_suites = solve_shard_suites(ordered_suites, pabot_args)
|
|
1978
1981
|
grouped_suites = (
|
|
1979
|
-
_chunked_suite_names(
|
|
1982
|
+
_chunked_suite_names(shard_suites, pabot_args["processes"])
|
|
1980
1983
|
if pabot_args["chunk"]
|
|
1981
1984
|
else _group_by_wait(_group_by_groups(ordered_suites))
|
|
1982
1985
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|