consider an example where I have 3 tests
def test_a():
pass
def test_b():
pass
def test_c():
pass
now there is a plugin 'dependency' which creates execution dependency. But this is not what I am looking for. What I am trying to achieve is following
def test_a():
pass
def test_b():
pass
@pytest...[ some way to say that always execute test_a and test_b before
executing test_c ]
def test_c():
pass
with this i can always have test_a and test_b executed even if i e.g. I invoke pytest as following
pytest -k test_c