Skip to main content

Lets users reference fixtures without name matching magic.

Project description

pytest fixture ref

PyPI PyPI - Python Version PyPI - License Coookiecutter - Wolt


Documentation: https://rtaycher.github.io/pytest-fixture-ref

Source Code: https://github.com/rtaycher/pytest-fixture-ref

PyPI: https://pypi.org/project/pytest-fixture-ref/


Let developers reference pytest fixtures without name matching magic.

Pass fixtures via default value or decorator args instead of magic strings.

Let me admit this is a bit of a hack. It might be important to note that this still uses pytests usual magic string matching under the covers by grabbing the function name and re-writing the function. That means you do have to make sure pytest imports it by installing it/specifying it in pytest_plugins/etc as well as importing it for reference. It also means this technically works with fake/dummy functions with the same name (in case you can't easily import some fixtures)

example:

from pytest_fixture_ref import using_fixtures_from_defaults, using_fixtures_from_kwargs

@using_fixtures_from_defaults
def test_bar1(_=fix_w_yield1, __=fix_w_yield2, tmp=tmp_path):
    assert tmp.exists()


@using_fixtures_from_kwargs(_=fix_w_yield1, __=fix_w_yield2, tmp=tmp_path)
def test_bar2(_, __, tmp):
    assert tmp.exists()

You can also use it to reference fixtures from other fixtures

@pytest.fixture
def first_entry():
    return "a"


@pytest.fixture
@using_fixtures_from_defaults
def order(fe=first_entry):
    return [fe]

Installation

pip install pytest-fixture-ref

Development

  • Clone this repository
  • Requirements:
  • Create a virtual environment and install the dependencies
poetry install
  • Activate the virtual environment
poetry shell

Testing

pytest

Documentation

The documentation is automatically generated from the content of the docs directory and from the docstrings of the public signatures of the source code. The documentation is updated and published as a Github project page automatically as part each release.

Releasing

Trigger the Draft release workflow (press Run workflow). This will update the changelog & version and create a GitHub release which is in Draft state.

Find the draft release from the GitHub releases and publish it. When a release is published, it'll trigger release workflow which creates PyPI release and deploys updated documentation.

Pre-commit

Pre-commit hooks run all the auto-formatters (e.g. black, isort), linters (e.g. mypy, flake8), and other quality checks to make sure the changeset is in good shape before a commit/push happens.

You can install the hooks with (runs for each commit):

pre-commit install

Or if you want them to run only for each push:

pre-commit install -t pre-push

Or if you want e.g. want to run all checks manually for all files:

pre-commit run --all-files

This project was generated using the wolt-python-package-cookiecutter template.

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_fixture_ref-0.0.4.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

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

pytest_fixture_ref-0.0.4-py3-none-any.whl (3.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest_fixture_ref-0.0.4.tar.gz.

File metadata

  • Download URL: pytest_fixture_ref-0.0.4.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.8 Linux/5.15.0-1022-azure

File hashes

Hashes for pytest_fixture_ref-0.0.4.tar.gz
Algorithm Hash digest
SHA256 bf354ae3ab1545e509738c6680f8f967ebd88b3dfa1173841ed3b8de5c86c389
MD5 d3361c63d493cfeca96ad6b5631b432c
BLAKE2b-256 846a5a2984928e063c7ac5bb5c74f29269568b731c6ccd43b8c3c726b3487387

See more details on using hashes here.

File details

Details for the file pytest_fixture_ref-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: pytest_fixture_ref-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 3.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.8 Linux/5.15.0-1022-azure

File hashes

Hashes for pytest_fixture_ref-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 2d78629d011426a3824cc95e26cb0316aca69873ffe4546503f19ccb0c944d85
MD5 e9a4818914ed046a12aeccaf9a0a945e
BLAKE2b-256 a28f1d351382c86bc29315889ef67392906978289134aa7378566b1987eaac04

See more details on using hashes here.

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