blob: 69fd15be1410ebf379912a6101dc38faaae31ebb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
""" Test that import errors are detected. """
# pylint: disable=invalid-name, unused-import, no-absolute-import, bare-except, broad-except, wrong-import-order, wrong-import-position
import totally_missing # [import-error]
try:
import maybe_missing
except ImportError:
maybe_missing = None
try:
import maybe_missing_1
except (ImportError, SyntaxError):
maybe_missing_1 = None
try:
import maybe_missing_2 # [import-error]
except ValueError:
maybe_missing_2 = None
try:
if maybe_missing:
import really_missing
except ImportError:
pass
from .collections import missing # [import-error]
from .syntax_error import toto # [syntax-error]
|