1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Stefano Rivera <stefanor@debian.org>
Date: Wed, 28 Feb 2024 10:44:26 -0400
Subject: Skip the setup.py test
We run the test suite in situations where setup.py isn't present.
---
tests.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests.py b/tests.py
index 0c7aa1f..60700eb 100755
--- a/tests.py
+++ b/tests.py
@@ -676,7 +676,8 @@ def test_suite():
optionflags=doctest.ELLIPSIS,
checker=IgnoreNodeCountChecker(),
*doctests),
- doctest.DocTestSuite(),
+ # Debian: Skipped
+ # doctest.DocTestSuite(),
])
|