Rerunner plugin for the Vedro testing framework
Project description
vedro-lazy-rerunner
The vedro-lazy-rerunner is a plugin for the Vedro testing framework.
It reruns failed scenarios until they pass for the first time. If none of the reruns are successful, the test is marked as failed after the designated number of attempts.
Installation
- Install the package using pip:
$ pip3 install vedro-lazy-rerunner
- Then, activate the plugin in your vedro.cfg.py configuration file:
# ./vedro.cfg.py
import vedro
import vedro_lazy_rerunner
class Config(vedro.Config):
class Plugins(vedro.Config.Plugins):
class LazyRerunner(vedro_lazy_rerunner.LazyRerunner):
enabled = True
Usage
Run Vedro with the --lazy-reruns option set to the desired number of reruns:
$ vedro run --lazy-reruns=5
Examples
- A test will not be rerun further if it passes during one of the reruns:
$ vedro run --lazy-reruns=5
Scenarios
*
✔ check number
│
├─[1/2] ✗ check number
│
├─[2/2] ✔ check number
# 1 scenario, 1 passed, 0 failed, 0 skipped (0.01s)
The test passed on the second attempt. The remaining 3 attempts were not needed. The test is considered passed.
- A test is marked as failed if it does not pass in any of the attempts:
$ vedro run --lazy-reruns=5
Scenarios
*
✗ check number
│
├─[1/5] ✗ check number
│
├─[2/5] ✗ check number
│
├─[3/5] ✗ check number
│
├─[4/5] ✗ check number
│
├─[5/5] ✗ check number
# 1 scenario, 0 passed, 1 failed, 0 skipped (0.02s)
The test is considered failed as it did not pass in any of the 5 attempts.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vedro-lazy-rerunner-0.1.1.tar.gz.
File metadata
- Download URL: vedro-lazy-rerunner-0.1.1.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4a32db84f943f501214f35a9a3aedb19b398768cd2ff6c3c869b2b7458c516d
|
|
| MD5 |
b37fb07dbf7afc0a79635621dfb9dc42
|
|
| BLAKE2b-256 |
65c93d482c0e7158e1b840b4d0ca041c92ce28cc2b98115581e221228710e053
|
File details
Details for the file vedro_lazy_rerunner-0.1.1-py3-none-any.whl.
File metadata
- Download URL: vedro_lazy_rerunner-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc2d262b1aba3a73aa867a9c14bd3fac34cf7277fea846227813a5ab7655dd17
|
|
| MD5 |
b31ad5dafb1ebe629677fc50e82d028d
|
|
| BLAKE2b-256 |
551f804005de0aae0df02f0c3e9e494128c15bda18c253e25062aac16c5db3f9
|