[processing] don't print Processing version

This commit is contained in:
Alexander Bruy 2016-11-11 17:31:12 +02:00
parent fcc96de8a7
commit af16bbf532

View File

@ -75,7 +75,6 @@ class AlgorithmsTest(object):
This is the main test function. All others will be executed based on the definitions in testdata/algorithm_tests.yaml
"""
ver = processing.version()
print("Processing {}.{}.{}".format(ver / 10000, ver / 100 % 100, ver % 100))
with open(os.path.join(processingTestDataPath(), self.test_definition_file()), 'r') as stream:
algorithm_tests = yaml.load(stream)