Package: python-cssselect / 1.0.1-1

testspath.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Fix path to tests
Author: W. Martin Borgert <debacle@debian.org>
Origin: vendor
Last-Update: 2012-12-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@
 import os.path
 try:
     from setuptools import setup
-    extra_kwargs = {'test_suite': 'cssselect.tests'}
+    extra_kwargs = {'test_suite': 'tests'}
 except ImportError:
     from distutils.core import setup
     extra_kwargs = {}