Hi,
I am using pytest 3.0.1.
I've created a lot of test fixtures and wanted to push them to module scope.
I now see exceptions that show that they get executed twice.
I suspect that by importing my fixtures from one test module to another, I created a second session scoped fixture.
So in test_a.py I do:
and in test_b.py I do:
from .test_a import a
def test_lala(a):
pass
Can you confirm my suspicion?