From 6b7e9919e9ce5692c834f16eaf8fde4e4dea8ef9 Mon Sep 17 00:00:00 2001 From: Mikko Korpela Date: Sun, 20 Mar 2022 20:35:25 +0200 Subject: [PATCH] Bump version to 2.5.0 --- pabot/pabot.py | 11 +++++++---- setup.py | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/pabot/pabot.py b/pabot/pabot.py index 80214854..8b92836d 100755 --- a/pabot/pabot.py +++ b/pabot/pabot.py @@ -16,7 +16,7 @@ # # partly based on work by Nokia Solutions and Networks Oyj """A parallel executor for Robot Framework test cases. -Version 2.4.0 +Version 2.5.0 Supports all Robot Framework command line options and also following options (these must be before normal RF options): @@ -64,10 +64,13 @@ For example "--argumentfile1 arg1.txt --argumentfile2 arg2.txt". --shard [SHARD]/[SHARD COUNT] - Optionally split execution into smaller pieces. This is - typically used for distributing testing to multiple machines. + Optionally split execution into smaller pieces. This can + be used for distributing testing to multiple machines. -Copyright 2019 Mikko Korpela - Apache 2 License +--chunk + Optionally chunk tests to PROCESSES number of robot runs. + +Copyright 2022 Mikko Korpela - Apache 2 License """ from __future__ import absolute_import, print_function diff --git a/setup.py b/setup.py index 5546488c..4e72a7a4 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="robotframework-pabot", - version="2.4.0", + version="2.5.0", description="Parallel test runner for Robot Framework", long_description="A parallel executor for Robot Framework tests." " With Pabot you can split one execution into multiple and save test execution time.",