aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 715794b..52eeeff 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,8 @@ from setuptools.command.test import test
4from setuptools import setup, find_packages 4from setuptools import setup, find_packages
5 5
6 6
7class TestsWithCoverage(test): 7# Python 2 setuptools test class is not an object
8class TestsWithCoverage(test, object):
8 9
9 description = "run unit tests with coverage" 10 description = "run unit tests with coverage"
10 11