Upgrade Hacking version

Change-Id: Ib2fc7e0d8e27de2fef341e313e29904502158aa4
Closes-Bug: #1458450
This commit is contained in:
Sirushti Murugesan 2015-05-25 11:35:02 +05:30
parent e4dccdee7a
commit 4a4641a0a2
4 changed files with 5 additions and 5 deletions

View File

@ -57,11 +57,11 @@ def main(argv=sys.argv):
if not config_text:
log.warn("No 'config' input found, nothing to do.")
return
#Write 'variables' to file
# Write 'variables' to file
with os.fdopen(os.open(
vars_filename, os.O_CREAT | os.O_WRONLY, 0o600), 'w') as var_file:
json.dump(variables, var_file)
#Write the executable, 'config', to file
# Write the executable, 'config', to file
with os.fdopen(os.open(fn, os.O_CREAT | os.O_WRONLY, 0o600), 'w') as f:
f.write(c.get('config', '').encode('utf-8'))

View File

@ -77,7 +77,7 @@ def main(argv=sys.argv):
json.dump(build_response(stdout, stderr, 0), sys.stdout)
return
#convert config to dict
# convert config to dict
if not isinstance(config, dict):
config = ast.literal_eval(json.dumps(yaml.load(config)))

View File

@ -3,7 +3,7 @@ discover
dpath>=1.3.2
fixtures>=0.3.14
# Hacking already pins down pep8, pyflakes and flake8
hacking>=0.8.0,<0.9
hacking>=0.10.0,<0.11
mock>=1.0
requests>=1.2.1,!=2.4.0
requests-mock>=0.4.0 # Apache-2.0

View File

@ -142,6 +142,6 @@ class HeatConfigKubeletORCTest(common.RunScriptTest):
manifest_path = self.manifests_dir.join(manifest_name)
self.assertThat(manifest_path, matchers.FileExists())
#manifest file should match manifest config
# manifest file should match manifest config
self.assertEqual(config['config'],
self.json_from_file(manifest_path))