Skip to main content

Custom grouping for pytest-xdist

Project description

pytest-custom-scheduling: pytest plugin

Rewrite pytest-xdist pytest_xdist_make_scheduler function, Modify load scheduling.

Support custom grouping.

install

pip install pytest-custom-scheduling

Usage

command line:pytest --switch={on:off} -n=auto

tip: pytest-xdist must be turned on

options:
  • switch: Used to open plugin, default “off”

Use {...} as a marker custom grouping.

Demo

import pytest


@pytest.mark.parametrize("group",
                         ["group_1", "group_2", "group_3", "group_4", "group_5", "group_6",
                          "group_7", "group_8", "group_9", "group_10", "group_11", "group_12"],
                         ids=["group_1{group_1}", "group_2{group_2}", "group_3{group_3}",
                              "group_4{group_4}", "group_5{group_5}", "group_6{group_6}",
                              "group_7{group_7}", "group_8{group_8}", "group_9{group_9}",
                              "group_10{group_10}", "group_11{group_11}", "group_12{group_12}"])

@pytest.mark.parametrize("group", ["group_4", "group_5", "group_6"],
                         ids=["group_4{group_5}", "group_5{group_5}", "group_6{group_5}"])
def test_05(group):
    a = "hello"
    b = "world"
    assert a == b

cmd line: pytest --switch=on -n=auto

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-custom-scheduling-1.0.tar.gz (2.8 kB view hashes)

Uploaded Source

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