From 33096f91611c65abf4c49127e217088ee69888dc Mon Sep 17 00:00:00 2001
From: Stefan Behnel <stefan_ml@behnel.de>
Date: Sat, 21 Feb 2015 22:02:53 +0100
Subject: [PATCH] exclude "Cython.Coverage" from doctest search when it fails
 to import due to missing dependency

---
 runtests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/runtests.py b/runtests.py
index 50ba09c60..a0f0c92ab 100755
--- a/runtests.py
+++ b/runtests.py
@@ -103,6 +103,7 @@ EXT_DEP_MODULES = {
     'tag:posix' : 'posix',
     'tag:array' : 'array',
     'tag:coverage': 'Cython.Coverage',
+    'Coverage': 'Cython.Coverage',
     'tag:ipython': 'IPython',
     'tag:jedi': 'jedi',
 }
-- 
2.30.9