|
Lines 42-48
def no_cache(monkeypatch):
Link Here
|
| 42 |
|
42 |
|
| 43 |
@pytest.fixture(autouse=True) |
43 |
@pytest.fixture(autouse=True) |
| 44 |
def functional(request): |
44 |
def functional(request): |
| 45 |
if request.node.get_marker('functional') \ |
45 |
if request.node.get_closest_marker('functional') \ |
| 46 |
and not request.config.getoption('enable_functional'): |
46 |
and not request.config.getoption('enable_functional'): |
| 47 |
pytest.skip('functional tests are disabled') |
47 |
pytest.skip('functional tests are disabled') |
| 48 |
|
48 |
|