File: requirements.patch

package info (click to toggle)
nose2 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,368 kB
  • ctags: 1,834
  • sloc: python: 7,899; makefile: 22
file content (20 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Disable some broken settings in setup.py.
 - Don't try to install requirements from PyPI.
 - A bug in nose2 prevents the use of `python setup.py test`
Author: Barry Warsaw <barry@debian.org>
Forwarded: not-needed

--- a/setup.py
+++ b/setup.py
@@ -74,7 +74,9 @@
             '%s = nose2:discover' % SCRIPT2,
         ],
     }
-    params['install_requires'] = REQS
-    params['test_suite'] = 'nose2.compat.unittest.collector'
+    # DEBIAN: don't try to install requirements from PyPI.
+    #params['install_requires'] = REQS
+    # DEBIAN: https://github.com/nose-devs/nose2/issues/118
+    #params['test_suite'] = 'nose2.compat.unittest.collector'
 
 setup(**params)