996a0f5b9c
Since the Zuul v2 files are removed, we can lint pep8 with less changes everywhere. Enable pep8 linting everywhere and fix remaining problems. Depends-On: Id67d0149b645bd23e460cef65719541f76f0967b Change-Id: I0ac0709b05912d00d02a51d732b1cf12eaf888a5
43 lines
1.4 KiB
Python
Executable File
43 lines
1.4 KiB
Python
Executable File
#! /usr/bin/env python
|
|
#
|
|
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import yaml
|
|
from collections import OrderedDict
|
|
import projectconfig_yamllib as pcy
|
|
|
|
|
|
def main():
|
|
yaml.add_constructor(yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG,
|
|
pcy.construct_yaml_map)
|
|
|
|
yaml.add_representer(OrderedDict, pcy.project_representer,
|
|
Dumper=pcy.IndentedDumper)
|
|
|
|
data = yaml.load(open('gerrit/projects.yaml'))
|
|
|
|
for project in data:
|
|
if ('upstream' in project and
|
|
'track-upstream' not in project.get('options', [])):
|
|
del project['upstream']
|
|
|
|
with open('gerrit/projects.yaml', 'w') as out:
|
|
out.write(yaml.dump(data, default_flow_style=False,
|
|
Dumper=pcy.IndentedDumper, width=80))
|
|
|
|
if __name__ == '__main__':
|
|
main()
|