File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
test_utils/cross_module_fixtures Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 55from contextlib import contextmanager
66from logging import getLogger
77from pathlib import Path
8- from test .test_utils .cross_module_fixtures .http_fixtures import * # NOQA
9- from test .test_utils .cross_module_fixtures .wiremock_fixtures import * # NOQA
8+
9+ try :
10+ from test .test_utils .cross_module_fixtures .http_fixtures import * # NOQA
11+ from test .test_utils .cross_module_fixtures .wiremock_fixtures import * # NOQA
12+ except ModuleNotFoundError :
13+ pass
1014from typing import Generator
1115
1216import pytest
Original file line number Diff line number Diff line change 11import pytest
22
3- from ..http_test_utils import DynamicCollectingCustomizer , StaticCollectingCustomizer
3+ try :
4+ from ..http_test_utils import (
5+ DynamicCollectingCustomizer ,
6+ StaticCollectingCustomizer ,
7+ )
8+ except ImportError :
9+ pass
410
511
612@pytest .fixture
You can’t perform that action at this time.
0 commit comments