blob: 2f685ec112e1dab2785eeec3345ab32090d3a42e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
"""Conftest for foo directory - should NOT be loaded by foo_bar tests."""
import pytest
@pytest.fixture
def foo_fixture():
"""Fixture from foo/conftest.py that should NOT be available in foo_bar."""
return 'foo_fixture_value'
|