File: testspath.patch

package info (click to toggle)
python-cssselect 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 264 kB
  • ctags: 272
  • sloc: python: 2,095; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (2)
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 = {}