1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: =?utf-8?b?T25kxZllaiBOb3bDvQ==?= <novy@ondrej.org>
Date: Fri, 4 Aug 2017 17:05:44 +0200
Subject: Skip not working unit tests
Forwarded: not-needed
Last-Update: 2016-04-15
---
pint/testsuite/__init__.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/pint/testsuite/__init__.py b/pint/testsuite/__init__.py
index baafc50..748083c 100644
--- a/pint/testsuite/__init__.py
+++ b/pint/testsuite/__init__.py
@@ -114,6 +114,7 @@ def add_docs(suite):
)
+@unittest.skip("Not working on Debian")
def test_docs():
suite = unittest.TestSuite()
add_docs(suite)
|