From 90663b2e755b6c6058f78fd3878e6afb39ee4d49 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Tue, 28 Aug 2018 16:14:21 +0200 Subject: [PATCH] Tests: Spaces & TABs Fix TABs and none-PEP8 spaces in approval test. Does not yet fix overlong lines for full `flake8` compliance. --- scripts/approvalTests.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py index b873fef2..e2b0ce93 100755 --- a/scripts/approvalTests.py +++ b/scripts/approvalTests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from __future__ import print_function +from __future__ import print_function import io import os @@ -13,8 +13,8 @@ import scriptCommon from scriptCommon import catchPath if os.name == 'nt': - # Enable console colours on windows - os.system('') + # Enable console colours on windows + os.system('') rootPath = os.path.join(catchPath, 'projects/SelfTest/Baselines') @@ -98,7 +98,6 @@ def filterLine(line, isCompact): # go from \ in windows paths to / line = line.replace('\\', '/') - # strip source line numbers m = filelocParser.match(line) if m: @@ -112,7 +111,7 @@ def filterLine(line, isCompact): if isCompact: line = line.replace(': FAILED', ': failed') line = line.replace(': PASSED', ': passed') - + # strip Catch version number line = versionParser.sub("", line) @@ -180,7 +179,7 @@ print("Running approvals against executable:") print(" " + cmdPath) -### Keep default reporters here +# ## Keep default reporters here ## # Standard console reporter approve("console.std", ["~[!nonportable]~[!benchmark]~[approvals]", "--order", "lex", "--rng-seed", "0"]) # console reporter, include passes, warn about No Assertions