From e273ac281503ceb3db19c38729b9e4c29993f4e6 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Fri, 1 Jun 2018 09:22:18 +1000 Subject: [PATCH] [processing] Some test debugging help --- python/plugins/processing/tests/AlgorithmsTestBase.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/plugins/processing/tests/AlgorithmsTestBase.py b/python/plugins/processing/tests/AlgorithmsTestBase.py index a3a38eb9545..c80ff7263b1 100644 --- a/python/plugins/processing/tests/AlgorithmsTestBase.py +++ b/python/plugins/processing/tests/AlgorithmsTestBase.py @@ -117,6 +117,8 @@ class AlgorithmsTest(object): feedback = QgsProcessingFeedback() + print('Algorithm parameters are {}'.format(parameters)) + # first check that algorithm accepts the parameters we pass... ok, msg = alg.checkParameterValues(parameters, context) self.assertTrue(ok, 'Algorithm failed checkParameterValues with result {}'.format(msg))