robotframework-pabot 4.3.0__py3-none-any.whl → 4.3.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.
- pabot/__init__.py +1 -1
- pabot/pabot.py +3 -1
- {robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/METADATA +2 -2
- {robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/RECORD +8 -8
- {robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/WHEEL +0 -0
- {robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/entry_points.txt +0 -0
- {robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/licenses/LICENSE.txt +0 -0
- {robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/top_level.txt +0 -0
pabot/__init__.py
CHANGED
pabot/pabot.py
CHANGED
|
@@ -2130,7 +2130,9 @@ def _check_ordering(ordering_file, suite_names): # type: (List[ExecutionItem],
|
|
|
2130
2130
|
if item.type in ['suite', 'test']:
|
|
2131
2131
|
if not any((s == item.name or s.endswith("." + item.name)) for s in list_of_suite_names):
|
|
2132
2132
|
# If test name is too long, it gets name ' Invalid', so skip that
|
|
2133
|
-
if
|
|
2133
|
+
# Additionally, the test is skipped also if the user wants a higher-level suite to be executed sequentially by using
|
|
2134
|
+
# the --suite option, and the given name is part of the full name of any test or suite.
|
|
2135
|
+
if item.name != ' Invalid' and not (item.type == 'suite' and any((s == item.name or s.startswith(item.name + ".")) for s in list_of_suite_names)):
|
|
2134
2136
|
raise DataError("%s item '%s' in --ordering file does not match suite or test names in .pabotsuitenames file.\nPlease verify content of --ordering file." % (item.type.title(), item.name))
|
|
2135
2137
|
number_of_tests_or_suites += 1
|
|
2136
2138
|
if number_of_tests_or_suites > len(list_of_suite_names):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotframework-pabot
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.1
|
|
4
4
|
Summary: Parallel test runner for Robot Framework
|
|
5
5
|
Home-page: https://pabot.org
|
|
6
6
|
Download-URL: https://pypi.python.org/pypi/robotframework-pabot
|
|
@@ -273,7 +273,7 @@ There different possibilities to influence the execution:
|
|
|
273
273
|
* The order of suites can be changed.
|
|
274
274
|
* If a directory (or a directory structure) should be executed sequentially, add the directory suite name to a row as a ```--suite``` option.
|
|
275
275
|
* If the base suite name is changing with robot option [```--name / -N```](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#setting-the-name) you can also give partial suite name without the base suite.
|
|
276
|
-
* You can add a line with text
|
|
276
|
+
* You can add a line with text `#WAIT` to force executor to wait until all previous suites have been executed.
|
|
277
277
|
* You can group suites and tests together to same executor process by adding line `{` before the group and `}` after. Note that `#WAIT` cannot be used inside a group.
|
|
278
278
|
* You can introduce dependencies using the word `#DEPENDS` after a test declaration. This keyword can be used several times if it is necessary to refer to several different tests. Please take care that in case of circular dependencies an exception will be thrown. Note that each `#WAIT` splits suites into separate execution blocks, and it's not possible to define dependencies for suites or tests that are inside another `#WAIT` block or inside another `{}` brackets.
|
|
279
279
|
* Note: Within a group `{}`, neither execution order nor the `#DEPENDS` keyword currently works. This is due to limitations in Robot Framework, which is invoked within Pabot subprocesses. These limitations may be addressed in a future release of Robot Framework. For now, tests or suites within a group will be executed in the order Robot Framework discovers them — typically in alphabetical order.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
pabot/SharedLibrary.py,sha256=mIipGs3ZhKYEakKprcbrMI4P_Un6qI8gE7086xpHaLY,2552
|
|
2
|
-
pabot/__init__.py,sha256=
|
|
2
|
+
pabot/__init__.py,sha256=MXW5_GNVuWSyyda2wmC-8BdsCTCzrK7WaD4yaZ0A0e8,200
|
|
3
3
|
pabot/arguments.py,sha256=m38y8mXKJ5BHlxSrsEI0gXlkzR5hv88G9i-FL_BouQ4,9168
|
|
4
4
|
pabot/clientwrapper.py,sha256=yz7battGs0exysnDeLDWJuzpb2Q-qSjitwxZMO2TlJw,231
|
|
5
5
|
pabot/coordinatorwrapper.py,sha256=nQQ7IowD6c246y8y9nsx0HZbt8vS2XODhPVDjm-lyi0,195
|
|
6
6
|
pabot/execution_items.py,sha256=HCd54LsIEZJjnL0TZC_tuac2DSVL4JHes6veJlpCE94,12058
|
|
7
|
-
pabot/pabot.py,sha256=
|
|
7
|
+
pabot/pabot.py,sha256=0pk3AcU5SQinY27laXRjCzAFDX_5L-vQoMTgnshMJf4,75275
|
|
8
8
|
pabot/pabotlib.py,sha256=FRZKaKy1ybyRkE-0SpaCsUWzxZAzNNU5dAywSm1QoPk,22324
|
|
9
9
|
pabot/result_merger.py,sha256=8iIptBn5MdgiW-OdhwVR2DZ0hUYuQeQXwIHAEPkMTuw,9095
|
|
10
10
|
pabot/robotremoteserver.py,sha256=L3O2QRKSGSE4ux5M1ip5XJMaelqaxQWJxd9wLLdtpzM,22272
|
|
@@ -14,9 +14,9 @@ pabot/py3/client.py,sha256=Od9L4vZ0sozMHq_W_ITQHBBt8kAej40DG58wnxmbHGM,1434
|
|
|
14
14
|
pabot/py3/coordinator.py,sha256=kBshCzA_1QX_f0WNk42QBJyDYSwSlNM-UEBxOReOj6E,2313
|
|
15
15
|
pabot/py3/messages.py,sha256=7mFr4_0x1JHm5sW8TvKq28Xs_JoeIGku2bX7AyO0kng,2557
|
|
16
16
|
pabot/py3/worker.py,sha256=5rfp4ZiW6gf8GRz6eC0-KUkfx847A91lVtRYpLAv2sg,1612
|
|
17
|
-
robotframework_pabot-4.3.
|
|
18
|
-
robotframework_pabot-4.3.
|
|
19
|
-
robotframework_pabot-4.3.
|
|
20
|
-
robotframework_pabot-4.3.
|
|
21
|
-
robotframework_pabot-4.3.
|
|
22
|
-
robotframework_pabot-4.3.
|
|
17
|
+
robotframework_pabot-4.3.1.dist-info/licenses/LICENSE.txt,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
18
|
+
robotframework_pabot-4.3.1.dist-info/METADATA,sha256=UVCRVuYefYU3KxOtMBnTdVi3nDATIDN1Eb69JJdM_MY,16417
|
|
19
|
+
robotframework_pabot-4.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
20
|
+
robotframework_pabot-4.3.1.dist-info/entry_points.txt,sha256=JpAIFADTeFOQWdwmn56KpAil8V3-41ZC5ICXCYm3Ng0,43
|
|
21
|
+
robotframework_pabot-4.3.1.dist-info/top_level.txt,sha256=t3OwfEAsSxyxrhjy_GCJYHKbV_X6AIsgeLhYeHvObG4,6
|
|
22
|
+
robotframework_pabot-4.3.1.dist-info/RECORD,,
|
|
File without changes
|
{robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{robotframework_pabot-4.3.0.dist-info → robotframework_pabot-4.3.1.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
|
File without changes
|