summaryrefslogtreecommitdiff
path: root/tests/test_imports.py
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2015-11-06 12:33:53 +0100
committerArmin Ronacher <armin.ronacher@active-4.com>2015-11-06 12:33:53 +0100
commit64c4567d82ebca6cb98180266a14e5c42b11e4d1 (patch)
tree33e8803c411299fc765745ec951b571c025a42a2 /tests/test_imports.py
parentbf1ddce0c830a310dc5c4e47fd70feed142d60f6 (diff)
downloadclick-64c4567d82ebca6cb98180266a14e5c42b11e4d1.tar.gz
Added time as allowed import on windows
Diffstat (limited to 'tests/test_imports.py')
-rw-r--r--tests/test_imports.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_imports.py b/tests/test_imports.py
index 5690825..6a8a122 100644
--- a/tests/test_imports.py
+++ b/tests/test_imports.py
@@ -36,7 +36,8 @@ ALLOWED_IMPORTS = set([
])
if WIN:
- ALLOWED_IMPORTS.update(['ctypes', 'ctypes.wintypes', 'msvcrt', 'zlib'])
+ ALLOWED_IMPORTS.update(['ctypes', 'ctypes.wintypes', 'msvcrt', 'time',
+ 'zlib'])
def test_light_imports():