Git Product home page Git Product logo

Comments (3)

DanCardin avatar DanCardin commented on May 29, 2024 1

you'd want to do something more like

from pytest_mock_resources import create_postgres_fixture

pg = create_postgres_fixture(async_=True)

Under the hood, this fixture is depending on pmr_postgres_container fixture and doing other fancy things (like waiting for the container to be ready), which is what is causing the container to spin up. Without that here, your fixture is just depending on the config fixture and not invoking any of the plugin internals.

Once you have this fixture, you can depend on it on with other fixtures; for example, if you wanted to retain your autouse usage.

@pytest.fixture(scope='session', autouse=True)
async def async_engine(pg):
    pass

With that said, I'd consider most scenarios that force you into redefining the fixture for this kind of purpose to be a defect of the library (i.e. we should add an autouse flag, if so)

from pytest-mock-resources.

funkindy avatar funkindy commented on May 29, 2024

Thank you for fast response. Its getting better, i can now use pg fixture to run container and make connections. I now want to obtain the actual database name for tests (i dont want to hardcode pytest_mock_resource_db_*) so i can instantiate separate engine and use it in my tests flow.

Can you share any suggestions on how this can be done correctly? Or is it possible at all from pg fixture.

Thank you.

from pytest-mock-resources.

funkindy avatar funkindy commented on May 29, 2024

Got it, pg.engine.url.database

from pytest-mock-resources.

Related Issues (20)

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.