File: 0001-Exclude-test-subpackages-from-getting-installed.patch

package info (click to toggle)
python-django-channels 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,036 kB
  • sloc: python: 3,109; makefile: 155; javascript: 60; sh: 8
file content (21 lines) | stat: -rw-r--r-- 471 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
From: Michael Fladischer <FladischerMichael@fladi.at>
Date: Wed, 13 Aug 2025 17:22:32 +0000
Subject: Exclude test subpackages from getting installed.

---
 setup.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index 09232fe..b9e912e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -48,7 +48,7 @@ daphne =
 
 [options.packages.find]
 exclude =
-    tests
+    tests*
 
 [flake8]
 exclude = venv/*,tox/*,docs/*,testproject/*,build/*