Provide the pytest with the ability to collect use cases based on rules in text files
Project description
pytest-choose
English | 简体中文
Provide the pytest with the ability to collect use cases based on rules in text files
Install
pip install pytest-choose
Example
Create Test Files:
# test_demo.py
class TestDemo:
def test_demo_1(self):
print(1)
def test_demo_2(self):
print(2)
def test_demo_3():
print(3)
def test_demo_4():
print(4)
def test_demo_5():
print(5)
def test_demo_6():
print(6)
def test_demo_7():
print(7)
Create the choose.json file:
// choose.json
{
"class": [
"TestDemo"
],
"function": [
"test_demo_2",
"test_demo_3",
"test_demo_4",
"test_demo_5"
]
}
Run tests:
pytest --fc="on" --fc-path="./choose.json" --fc-coding="utf-8"
Running results:
======================= test session starts =======================
platform win32 -- Python 3.9.6, pytest-7.4.2, pluggy-1.3.0
rootdir: pytest-choose
plugins: choose-0.0.1
collecting ...
[pytest-choose] Cases list: ./choose.json
[pytest-choose] Filter 2 cases and collect 5 cases
collected 7 items
cases\test_choose.py ..... [100%]
======================== 5 passed in 0.04s ========================
Parameter Description
Parameter | Description |
---|---|
--fc | Default 'off' for file choose, option: 'on' or 'off' |
--fc-path | File Path, default './choose.json' |
--fc-coding | File encoding, default 'utf-8' |
License
pytest-choose is licensed under GPLv3.
Copyright © 2023 by Azusa.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pytest-choose-0.0.6.tar.gz
(17.0 kB
view details)
Built Distribution
File details
Details for the file pytest-choose-0.0.6.tar.gz
.
File metadata
- Download URL: pytest-choose-0.0.6.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 549925db1df58bbe21a4e450efa8bda5d597fb99946a36648354cdbfa0da1816 |
|
MD5 | 44af0b2b63a6ded492bf79a92b44c8bb |
|
BLAKE2b-256 | 7be4828853fa25e80e83a9aa5065ebfc83f871baa7f87e23e167baede8ede4e7 |
File details
Details for the file pytest_choose-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: pytest_choose-0.0.6-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2bb0a20cfb77d9e461f4520d897a3ac4acee841fef71939b9cc4b5a8c70c908 |
|
MD5 | 146690ec9fbc94eef884326e049b70a6 |
|
BLAKE2b-256 | 1de0036b59661b910d134f39f71874de1ca40ce818dfd20cd949f0a4a951dd64 |