File: 0002-Make-the-tests-verbose.patch

package info (click to toggle)
django-memoize 2.0.0%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 204 kB
  • ctags: 147
  • sloc: python: 640; makefile: 114
file content (21 lines) | stat: -rw-r--r-- 647 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From d2d34b6081225b364ad1efa01e4f4d03a7642814 Mon Sep 17 00:00:00 2001
From: Christopher Hoskin <christopher.hoskin@gmail.com>
Date: Mon, 25 Jul 2016 21:00:36 +0100
Subject: Make the tests verbose

---
 runtests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtests.py b/runtests.py
index 74dc29b..dc2c32e 100644
--- a/runtests.py
+++ b/runtests.py
@@ -13,6 +13,6 @@ if __name__ == "__main__":
         django.setup()
         
     TestRunner = get_runner(settings)
-    test_runner = TestRunner()
+    test_runner = TestRunner(verbosity=2)
     failures = test_runner.run_tests(["tests"])
     sys.exit(bool(failures))