summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2015-07-16 21:39:55 -0700
committerVinson Lee <vlee@freedesktop.org>2015-07-20 18:37:02 -0700
commitda75a80df57fee0ef8526b338229c8cd07dba591 (patch)
tree1a33a56e7ade0ff5eb1d9a4ccdf80c3b33c9fed2
parent9e4f0c696b4b5d8571b764960cf661ea06981ce7 (diff)
framework/backends/json.py: Fix PEP 8 issues.
Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Liam Middlebrook <lmiddlebrook@nvidia.com> Acked-by: Dylan Baker <baker.dylan.c@gmail.com>
-rw-r--r--framework/backends/json.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/backends/json.py b/framework/backends/json.py
index b40eda777..b747e2930 100644
--- a/framework/backends/json.py
+++ b/framework/backends/json.py
@@ -186,7 +186,7 @@ def load_results(filename, compression_):
# Look for a compressed result first, then a bare result, finally for
# an old main file
for name in ['results.json.{}'.format(compression_),
- 'results.json',
+ 'results.json',
'main']:
if os.path.exists(os.path.join(filename, name)):
filepath = os.path.join(filename, name)
@@ -214,7 +214,7 @@ def _load(results_file):
"""Load a json results instance and return a TestrunResult.
This function converts an existing, fully completed json run.
-
+
"""
result = results.TestrunResult()
result.results_version = 0 # This should get overwritten
@@ -317,7 +317,7 @@ def _update_results(results, filepath):
def _write(results, file_):
"""WRite the values of the results out to a file."""
with write_compressed(file_) as f:
- json.dump({k:v for k, v in results.__dict__.iteritems()},
+ json.dump({k: v for k, v in results.__dict__.iteritems()},
f,
default=piglit_encoder,
indent=INDENT)
@@ -355,8 +355,8 @@ def _update_zero_to_one(results):
#
# This expects that the order of info is rougly returncode, errors,
# output, *extra it can handle having extra information in the middle,
- if (None in [test.get('out'), test.get('err'), test.get('returncode')]
- and test.get('info')):
+ if (None in [test.get('out'), test.get('err'),
+ test.get('returncode')] and test.get('info')):
# This attempts to split everything before Errors: as a returncode,
# and everything before Output: as Errors, and everything else as
@@ -517,7 +517,7 @@ def _update_three_to_four(results):
return results
-def _update_four_to_five(results):
+def _update_four_to_five(results):
"""Updates json results from version 4 to version 5."""
new_tests = {}