File: verbose-testing.patch

package info (click to toggle)
kineticstools 0.6.1%2Bgit20220223.1326a4d%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,188 kB
  • sloc: python: 3,508; makefile: 200; ansic: 104; sh: 55; xml: 19
file content (26 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Make test execution verbose
Author: Afif Elghraoui <afif@debian.org>
Forwarded: not-needed
Last-Update: 2020-04-21
Index: kineticstools/Makefile
===================================================================
--- kineticstools.orig/Makefile
+++ kineticstools/Makefile
@@ -29,7 +29,7 @@ check: tests
 tests: cram-tests py-tests extra-tests
 
 cram-tests:
-	cram --xunit-file=cramtests.xml test/cram/*.t
+	cram --verbose --xunit-file=cramtests.xml test/cram/*.t
 
 long-tests:
 	cram test/cram/long_running/*.t
@@ -39,7 +39,7 @@ py-tests:
 	cd test/; pytest -s -v -p no:warnings -n auto --dist=loadscope --durations=20 --junitxml=../nosetests.xml --cov-report=xml:../coverage.xml test_*.py
 
 extra-tests:
-	#cram --xunit-file=cramtests-extra.xml test/cram/extra/*.t
+	#cram --verbose --xunit-file=cramtests-extra.xml test/cram/extra/*.t
 	# TODO: Fix chemistry and re-enable this test.
 
 pylint: