File: setup.patch

package info (click to toggle)
qcat 1.1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,048 kB
  • sloc: python: 2,617; sh: 43; makefile: 10
file content (26 lines) | stat: -rw-r--r-- 562 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
24
25
26
From: Santiago Vila <sanvila@debian.org>
Subject: Tell setup.py to always install test files
 Forwarding is not possible because the project is archived.
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/1103326
Last-Update: 2025-09-29

--- a/setup.py
+++ b/setup.py
@@ -29,11 +29,15 @@
         'pytest-cov',
     ],
     packages=[
-        'qcat'
+        'qcat',
+        'qcat.test'
     ],
     package_data={
         'qcat': [
             'resources/kits/*',
+        ],
+        'qcat.test': [
+            'data/*.fastq',
         ]
     },