Skip to main content

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 hashes)

Uploaded Source

Built Distribution

pytest_choose-0.0.6-py3-none-any.whl (19.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page