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:
|