Author: Matti Picus <[email protected]>
Branch: unicode-utf8-py3
Changeset: r95024:5061432f841e
Date: 2018-08-23 13:23 +0300
http://bitbucket.org/pypy/pypy/changeset/5061432f841e/
Log: print contents of local machine_config file
diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -398,6 +398,9 @@
config_py_file = os.path.expanduser(config_py_file)
if py.path.local(config_py_file).check(file=1):
print >>out, "using config", config_py_file
+ if ('machine' in config_py_file:
+ with open(config_py_file, 'r') as fid:
+ print >>out, fid.read()
execfile(config_py_file, run_param.__dict__)
else:
print >>out, "ignoring non-existant config", config_py_file
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit