Skip to main content

Pytest plugin for generating test cases with YAML. In test cases, you can use markers, fixtures, variables, and even call Python functions.

Project description

pytest-yaml-sanmu

pytest-yaml-sanmu is a plugin for pytest_ that considers YAML files as test case.

In this way, we can use markers, fixtures, variables, and even call Python functions in YAML.

For more information, please click here .

Require

python>=3.12
pytest>=8.2
pyyaml~=6.0
pyyaml-include~=1.3.1

Install

pip install pytest-yaml-sanmu

Config

# pytest.ini

[pytest]
# To execute YAML files starting with "test_"
yaml_run_case = true

Usage

1. Write tests

# test_api.yaml

name: fetch baidu # Each test case has a name
steps:                 # Each test case has multiple steps

  - request:           # steps 1: send request
      method: get
      url: https://www.baidu.com

  - response:          # steps 2: assert response
      status_code: 200
      text: "*baidu*"

2. Write Hook

# conftest.py

import requests
import responses_validator


def pytest_yaml_run_step(item):
    step = item.current_step
    request = step.get('request')
    response = step.get('response')

    if request:
        print(f'url={request["url"]}')
        item.resp = requests.request(**request)

    if response:
        responses_validator.validator(item.resp, **response)

    return True

3. Run pytest

(.venv) ~/pytest-yaml-demo>pytest
================== test session starts ==================
platform win32 -- Python 3.12.2, pytest-8.2.2, pluggy-1.5.0
rootdir: ~/pytest-yaml-demo
configfile: pytest.ini
plugins: allure-pytest-2.13.5, yaml-0.3.0.dev3
collected 1 item                                                                                 

test_api.yaml .                            [100%]

================== 1 passed in 0.22s ================== 

FeedBack

WeChat: python_sanmu

Article

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pytest_yaml_sanmu-1.1.3-cp314-cp314t-win_amd64.whl (298.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_11_0_arm64.whl (278.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_10_13_x86_64.whl (283.3 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314-win_amd64.whl (254.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_11_0_arm64.whl (255.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_10_13_x86_64.whl (263.3 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

pytest_yaml_sanmu-1.1.3-cp313-cp313-win_amd64.whl (248.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_11_0_arm64.whl (254.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl (264.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pytest_yaml_sanmu-1.1.3-cp312-cp312-win_amd64.whl (253.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_11_0_arm64.whl (260.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl (270.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 774effbd93831c28608d3cc03dc1a6037bfe994622916a69096228f5d249ec2f
MD5 41a64b1f2de3453ff638da41657f56ef
BLAKE2b-256 1f6cc01d294ccee9a2f42a932f8f07ad0a28d488a922a072c76a9b37c4d5783d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-win_amd64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2e51a3d37984197410c3e4deb732aad7fb2c72e5fb8ad97723de8799c2ec8bb
MD5 99609feae2d0f4ca5e9bbd06b4cab465
BLAKE2b-256 0808de49f3a2a2bc4b98121671584a68bfb3ca0171246a3604e7bbf445bdb6e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f677f65df3ebb3b1887997d508919add89e849427c4f32875c8a7531512d186e
MD5 2a052588b3d26e71bf6b265ab42294e7
BLAKE2b-256 8336effac878de57418c5c3059525f25299313044760e9b670a6f66a1d5c866a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 590f3e89f5a9da9b82fe034e50d8300e21db079ddd2739266d0fc777281ed694
MD5 8907440740f942409c9da90ac854d2de
BLAKE2b-256 58e8ad7abccab7b1f305495549ef6e99d072c418c08243b9cd710bb64a7aed5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f358aa627dab0757c04e5afd72b3b584d377c1245496aa29defec2197b7ccf37
MD5 c1f4c893e80c402ece504e8528e78dcc
BLAKE2b-256 972302566c7f18ba7e3c19302164c3d6ff1c6a7528b0c298afcdf0d2ae5b27aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 098662a7447f4c26f1badae16d4b679f72ca94650889e9f9fb6a1ee2ddd66d0f
MD5 71ac304cdc3480c7d9f8a94cb0c57bb4
BLAKE2b-256 7b78386e5dd3d96e9ff1830a02b835b0c94b5a053a5265bf8be40644bd6f28a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f9443a063c21b9187f84475cc99c8f807ceacf04b8f3b4319d98002150bcddfe
MD5 1a9a9a927530c7f56b8d547c51d5a378
BLAKE2b-256 742b3f40eb28347872cda628e434d09286778c6e557e8ba7b29aef761e8fc185

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 59b6433b4e69047944ff198b737c225f2c11a2fdf0c4e2f828d22b34108e8c01
MD5 59c445f1fdb61090290edde7616e8289
BLAKE2b-256 8039d0fb460b0f963a53f9d0441ec1def5440055502aba00b7a1a1f561dee402

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-win_amd64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bef989deeccac4c1b2adb388c5900a980b60da4109ba20ef4f47820561d34963
MD5 6a2488d316f9ced33428138d003009ee
BLAKE2b-256 4a11d5c0d230391fdfa295bd88053f365541d2d1ecd4c4873d699731fc0f97d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f73bc6311549f4cb39d113193d377b833d32ef400ac9ab61ec14bf7c1dba597
MD5 27cd32b9fe071c9b47f8a2c884e85c98
BLAKE2b-256 a0a7ce257ea3dfda2777c1e09c0a570a55a42b76bf642a4e37637e7f0292764d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ddd0ed5f0432b6f2d9cb3338fbb51fee6fb4d10d22ced77751bd5b93e8c9c5a
MD5 650b89e03b3c3724b98a2ff84f4abf12
BLAKE2b-256 a53a512927c0d5c5aeaa568a9924da5e0c1647929313fe2bd63e0f02d7ba977a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7a152eddcec5a4c3396c487ac1ef9db955be5d6ccc487a2cfbf92435d60024d
MD5 70294b64cdbdf713a3d9eceff1e1e979
BLAKE2b-256 ab6a7825d47e8101c7d3e70c712a1fbb32c267f26c971305345ef9d02e160e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db147ec0039ae0856e51b51f8e86ffa77c86be39ec78ebb5dddc48ae64ca0aea
MD5 588ee8af617815162071368c84879dc6
BLAKE2b-256 7e68506b158814bf8155f0841640c66642e822dbd0a11a1835d42947c6f705f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 080ba10e935cd6e3eef6d77d472c1b88b6999d6eb45c3c1fea90ee701a547b92
MD5 00b968939383fc0125ed4c4e10a26dd4
BLAKE2b-256 b913b7f10e6df4d14db7ce63a1ec329f4b7dedf141d10407ef6ea44cbe9c56a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5d05750f53df3b88abb5c86cbe375aefd0c06bf340a032cdccfd1388a70bbca
MD5 b2b9284a5d4c0ce6257be79ca27afd51
BLAKE2b-256 a587eb723cdf4c8edc0abe4669af36eaa8f8268c2d4cc1a2a2940ed422b6da25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b16e9c9ca53ba5d16981d86f3faa8a14e7c2af43b96d823d003195649147abe
MD5 64f756b091c94877fde8853c9d7a83ae
BLAKE2b-256 350dea4fb4726b0112ac6d69b2abacb621bb2328a8a21f9a7863e8539648983f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 486c5e51c1c10d40a6ebdfc09d3fec78bfae3622c831755be0ba74048ce2dd4e
MD5 284fa9a609ba5caa9a9819bbbcf26804
BLAKE2b-256 dde30b3d7557350395fa9d31c60817342788c9e138d76651b919c740d3b64a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b9fd8383f71f4f97abcd24b4d85aeb89f395f6bacb8e95d082e8902958eadab
MD5 15d147c4e39bb66530ee5f9b46e57c3a
BLAKE2b-256 0b7a719de80d35ae0c06c3ed085de3a2b3e39962195204f58ec8853a0280d396

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 511e634214c8125ffe907b9b90b815f0060aca83a584a03efc5587888e167214
MD5 eaf725b020e4c95adc1ea1b0803c41e8
BLAKE2b-256 9b5706076924eb88c503781f0fc256bd34137b50aa3c92259363a84102bfeace

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed9419214793f43962c819a4a6fe54f72cc1ce832384a3f3f4d7b2756c00f185
MD5 84c8a4e525ae651cf8445639e0653f8a
BLAKE2b-256 f2e0b9492a7b440124124e8c58c8f8a9f5952fc3dad3f87e6fdce41c2ece0c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 35204bdea5e1bc9d9202e5abf276f45e483520cfea07ed145d0fde649f0d1c4f
MD5 1e3239e1b1a2135f36d9cef9d4109e1e
BLAKE2b-256 3e76410b741fb8881294613e986e54a031a4633b17694620800e63dc43348bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 582a988127e69dc3d2dbea17c239571111081a025c78c2ed6876dc4e520cbf92
MD5 097a6250c046a0c1dd613e78c8ec4e9e
BLAKE2b-256 1fb06648fcae4922f2585d886e1f706c8e1b7ae38c217cfb94dbdc95503314b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2061721f8777f958ba0a3ca9bda8c80e139fcc75da8e307e450712323dfbf66
MD5 2e601aed26af68c14ce796991d0c852a
BLAKE2b-256 f6f4a5b93ad8988d2279b4bd725ee59a8d1bbf72bf854df14a02717258efb32d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7341a878ec44dd3936a8b9374da5e83429344d120d8b688686de3b7aad04bf9e
MD5 e8ddae585475713d152582e7948437ab
BLAKE2b-256 c0e570607ce4505e5cd9a95c70bf2f7b84eee3062827615e85794c55c8dd2b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1f6075fddfdb18789528a69ba50d5e1c21cf7f836dd2dd126e696371c413608
MD5 8a053c19c798d241aeeea0e9756ee73b
BLAKE2b-256 75c1dc042771845bb225c48f7bfd3dbada9c8a7d9ef4df512b58c4210067f458

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8979e945b185da148e498e9eea32e9539f1f3c54eb70ea38753561848fbe5bec
MD5 47a6d8a295d203db350713a2cc9be08b
BLAKE2b-256 0f747f1ec9bd8eb7635c434384a59befea74680e645f42a4b55b745445a426f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4eb26b748f39307346a78bb86190efd3a4708339219141304057b583082df43
MD5 b8bd5008f31b83ae02df94be35b9c8a3
BLAKE2b-256 9501ce4b15e41dc4d043e25f0022fe9b8ba955811e15b9d4ba5defbfbe13a267

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1fc3babb47947ae9f1732bfa4f139e7adf30536ad6b824f7376559df06f6a3df
MD5 2e1a38e927856d4b167b2ea013ac5ae6
BLAKE2b-256 62f11f4b9c776151e254060cc28ead4396087d4b6b62498c4f2f54cf043472eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_yaml_sanmu-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on dongfangtianyu/pytest-yaml-sanmu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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