File: Don-t-run-pytest-runner.patch

package info (click to toggle)
django-cas-server 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,112 kB
  • sloc: python: 6,036; makefile: 262; xml: 100; javascript: 92; sh: 17
file content (21 lines) | stat: -rw-r--r-- 718 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: Carsten Schoenert <c.schoenert@t-online.de>
Date: Sun, 12 Sep 2021 21:34:07 +0200
Subject: Don't run pytest runner

Forwarded: not-needed
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 6210936..c39433c 100644
--- a/setup.py
+++ b/setup.py
@@ -68,6 +68,6 @@ if __name__ == '__main__':
         url="https://github.com/nitmir/django-cas-server",
         download_url="https://github.com/nitmir/django-cas-server/releases/latest",
         zip_safe=False,
-        setup_requires=['pytest-runner'],
+        #setup_requires=['pytest-runner'],
         tests_require=['pytest', 'pytest-django', 'pytest-pythonpath', 'pytest-warnings', 'mock>=1'],
     )