Giter Club home page Giter Club logo

Comments (2)

zmievsa avatar zmievsa commented on May 29, 2024

Am on it.

from pytest-fixture-classes.

zmievsa avatar zmievsa commented on May 29, 2024

It's not a bug in pytest-fixture-classes. It's an expected behavior in pytest. To verify so, I created the following scenario similar to yours:

# test_foo.py
import pytest


@pytest.fixture
def first_fixture() -> None:
    ...


@pytest.fixture
def second_fixture(first_fixture):
    def inner(self) -> None:
        first_fixture()

    return inner
# test_bar.py

from .test_foo import second_fixture


def test_kek(second_fixture) -> None:
    second_fixture()

Same error: fixture 'first_fixture' not found. When you import fixtures like that, you need to import either the entire file (wildcard) or to import all used fixtures. That happens because you're not supposed to define fixtures outside of conftest.py. However, you can create multiple conftest.py files in subdirectories.

But thank you for this issue: it helped me find a few minor display bugs in pytest-fixture-classes.

from pytest-fixture-classes.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.