File: skip-setuppy-test

package info (click to toggle)
objgraph 3.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,224 kB
  • sloc: python: 1,188; makefile: 108; sh: 8
file content (23 lines) | stat: -rw-r--r-- 655 bytes parent folder | download
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(),
     ])