aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf
diff options
context:
space:
mode:
Diffstat (limited to 'wkhtmltopdf')
-rw-r--r--wkhtmltopdf/tests/run.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/wkhtmltopdf/tests/run.py b/wkhtmltopdf/tests/run.py
index 239f5dc..a840e68 100644
--- a/wkhtmltopdf/tests/run.py
+++ b/wkhtmltopdf/tests/run.py
@@ -2,7 +2,6 @@
import os
import sys
-from colour_runner.django_runner import ColourRunnerMixin
from django.conf import settings
DIRNAME = os.path.abspath(os.path.dirname(__file__))
@@ -33,11 +32,7 @@ except ImportError:
from discover_runner.runner import DiscoverRunner
-class TestRunner(ColourRunnerMixin, DiscoverRunner):
- pass
-
-
-test_runner = TestRunner(verbosity=1)
+test_runner = DiscoverRunner(verbosity=1)
failures = test_runner.run_tests(['wkhtmltopdf'])
if failures:
sys.exit(1)