File: 0001-Fix-testpaths-list-in-pytest-config.patch

package info (click to toggle)
python-sentinels 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124 kB
  • sloc: python: 45; sh: 7; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 435 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: Stuart Prescott <stuart@debian.org>
Date: Sun, 21 Dec 2025 15:57:37 +1100
Subject: Fix testpaths list in pytest config

---
 pyproject.toml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index ea7422a..26bfe78 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -35,4 +35,6 @@ testing = [
 source = "vcs"
 
 [tool.pytest]
-testpaths = "tests"
+testpaths = [
+  "tests",
+]