Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Can a pytest test change the value of a session fixture and affect subsequent tests?

Let’s say that a pytest session fixture returns a dictionary and this dictionary is then manipulated within a test. Would this affect subsequent tests which use the same fixture?

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Yes. And that is trivial to verify. Exactly one of these tests will fail:

import pytest

@pytest.fixture(scope="session")
def d():
    return {}

def test_one(d):
    assert not d
    d["k"] = "v"

def test_two(d):
    assert not d
    d["k"] = "v"

If the fixture scope is changed to "function" (the default scope) then both tests will pass, since the dict will be created anew each time.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading