summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--debian/control4
-rwxr-xr-xdebian/rules2
-rw-r--r--setup.py10
4 files changed, 7 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 84ebae9..b8ce1fa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,8 @@
all:
+install:
+
+
clean:
rm -f *.py[co] */*.py[co] .coverage
rm -rf build
diff --git a/debian/control b/debian/control
index b2c7e91..fa1123f 100644
--- a/debian/control
+++ b/debian/control
@@ -3,13 +3,11 @@ Maintainer: Lars Wirzenius <liw@liw.fi>
Section: python
Priority: optional
Standards-Version: 3.8.0
-Build-Depends: debhelper (>= 7.0), python-support (>= 1.0.3), python
-XS-Python-Version: all
+Build-Depends: debhelper (>= 7.0), python-support (>= 1.0.3), python-dev
Package: python-coverage-test-runner
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-coverage
-XB-Python-Version: ${python:Versions}
Description: fail Python program unit tests unless they test everything
This package contains the Python module CoverageTestRunner, which runs
unit tests implemented using the unittest module in the Python standard
diff --git a/debian/rules b/debian/rules
index 659a1bd..a1c37cb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
%:
- dh $@ --build-system=python-distutils
+ dh $@ --buildsystem=python_distutils
override_dh_auto_clean:
$(MAKE) clean
diff --git a/setup.py b/setup.py
index 777bfb4..752e629 100644
--- a/setup.py
+++ b/setup.py
@@ -2,15 +2,9 @@ from distutils.core import setup
setup(name='CoverageTestRunner',
version='1.2',
- description='fail Python program unit tests unless they test everything',
- long_description='''\
-CoverageTestRunner runs unit tests implemented using the unittest module
-in the Python standard library. It runs them using coverage.py and fails
-the test if all statements are not covered.
-''',
+ description='run unittests',
author='Lars Wirzenius',
author_email='liw@liw.fi',
- url='http://braawi.org/coveragetestrunner.html',
- license='GNU General Public License, version 2 or later',
py_modules=['CoverageTestRunner'],
)
+