Skip to main content

Custom grouping for pytest-xdist, rename test cases name and test cases nodeid, support allure report

Project description

pytest-custom-nodeid: pytest plugin

Support custom grouping. {group name} or {testfile::class}

Rename testcases name and testcases nodeid, support allure report.

The loadscope load policy based on pytest-xdist is used.

Change testcases nodeid and testcases name encoding to UTF-8 and unicode escape

Because when ‘pytest xdist’ uses’ - x ‘(stops when it fails), if any use case fails, the whole concurrency will stop running

The skip function is supported. The selected group name will skip all the remaining use cases of the group after the first use case of the group fails to run

This function is particularly useful in scenario testing and other test sets where use cases depend on each other,

to avoid failure of previous use cases and unnecessary execution of subsequent use cases

Format:
  • name: ids

  • nodeid: group_name::ids

install

pip install pytest-custom-nodeid

Usage

command line:pytest –rename={on:off} –skip=group_name –skip-json=absolute_path

options:

  • –rename It is used to open the plug-in, rename the marked use cases, code the unmarked use cases only, and close “off” by default

  • –skip If it fails, the subsequent use case will be skipped. The tag name is needed here. example: if the tag in IDS is ‘{login}’, the skip tag is ‘–skip=login`

  • –skip-json When there are too many tags to be marked, it can be stored in a JSON file. Here you need to enter the absolute address, which can be used with ‘skip’. The two tags will be combined

tip:

  1. It supports running with pytest xdist, and can be concurrent with class according to loadscope policy

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

  3. Support “{ filename::classname }” format for multi-level settings

  4. Skip and skip-json are case-sensitive

  5. Do not use ‘-x’ in pytest-xdist. If the use case fails, the rest of the use cases will stop running

[Chinese](https://github.com/fungaegis/pytest-custom-nodeid

Demo

import pytest


@pytest.mark.parametrize("group",
                         ["world", "hello", "hello", "hello", "world", "world"],
                         ids=["group_4{group_1}", "group_5{group_2}", "group_6{file::class}",
                              "group_7{group_1}", "group_8{group_2}", "group_9{file::class}"])
def test_05(group):
    a = "hello"
    assert a == group

cmd line: pytest –rename=on –skip=group_1 –skip=group_2 –skip=file::class -n=auto –dist=loadscope

Skip marks the group to which the preceding use case fails, causing subsequent use cases to skip

Using the loadscope load policy, because there are three groups, it will be divided into three groups to run concurrently

nodeid will be renamed to

log

v0.2

Add label alias, fail skip function

v0.3

Add relative address support for skip-json

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-nodeid-0.3.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file pytest-custom-nodeid-0.3.tar.gz.

File metadata

  • Download URL: pytest-custom-nodeid-0.3.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.7.0

File hashes

Hashes for pytest-custom-nodeid-0.3.tar.gz
Algorithm Hash digest
SHA256 7f96c8b5086432efd64827162d53c5382ab2fa1f5d93da296482d5bcff433c24
MD5 3209864a74e3eea216730aa08d854d6c
BLAKE2b-256 c2d65b3570774b7d9c65f5858b1b0c5bb709e4f2a672b6aa7f93e00febaa6c4b

See more details on using hashes here.

Supported by

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