summaryrefslogtreecommitdiff
path: root/tests/functional/wildcard_import.py
diff options
context:
space:
mode:
authorAshley Whetter <ashley@awhetter.co.uk>2019-06-14 22:28:42 -0700
committerClaudiu Popa <pcmanticore@gmail.com>2019-06-20 10:02:14 +0200
commit33b8185a455c1686d038258697bb93005f2441c2 (patch)
tree4a50ccac775c009436e45803129e428ed694065f /tests/functional/wildcard_import.py
parent7081d91f30728653000bdfc59ea85a3395f96418 (diff)
downloadpylint-git-33b8185a455c1686d038258697bb93005f2441c2.tar.gz
Stopped installing tests with package
Diffstat (limited to 'tests/functional/wildcard_import.py')
-rw-r--r--tests/functional/wildcard_import.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/functional/wildcard_import.py b/tests/functional/wildcard_import.py
new file mode 100644
index 000000000..66ae63d9e
--- /dev/null
+++ b/tests/functional/wildcard_import.py
@@ -0,0 +1,5 @@
+# pylint: disable=no-absolute-import,missing-docstring,import-error,unused-wildcard-import
+from indirect1 import * # [wildcard-import]
+# This is an unresolved import which still generates the wildcard-import
+# warning.
+from unknown.package import * # [wildcard-import]