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 1 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.3.tar.gz
(16.5 kB
view details)
Built Distribution
File details
Details for the file pytest-choose-0.0.3.tar.gz
.
File metadata
- Download URL: pytest-choose-0.0.3.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0b7d1e1a6d1b6fe9a772f802765bb781ce5c12aa73f24247b47d0ac8c7fa2aec
|
|
MD5 |
bd11624804626239e542ddad6755e7ef
|
|
BLAKE2b-256 |
189fa8aaf82329c6ac8e8f629dba0073112b56f302d1ba1b732ed48e1b2e58cf
|
File details
Details for the file pytest_choose-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: pytest_choose-0.0.3-py3-none-any.whl
- Upload date:
- Size: 18.3 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 |
590841bbf7ed23daa617098f29520259758f5f83eec39733b73aa1130bc24925
|
|
MD5 |
6fe9efb47723cefd1626e62eee0916d8
|
|
BLAKE2b-256 |
186fd76be055e2dbd87a7922cfb1b392fafe5afdc23a4f9e98b6988f13ae52f6
|