reviewstats/testprojectinfo.py
Robert Collins 56cc948e8e Tweak formatting for hacking.
I'm about to bring in regular project infrastructure, this is a
prelude to that.

Change-Id: I58031c196ee4105a4f51c99bf7a9ad3a29d84c6b
2013-11-25 03:26:42 +00:00

33 lines
862 B
Python
Executable File

#!/usr/bin/env python
#
# Copyright (C) 2013 - Red Hat, Inc.
#
# 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 logging
import sys
import utils
def main():
logging.basicConfig(level=logging.DEBUG)
# Make sure all projects info load successfully
utils.get_projects_info('', True)
return 0
if __name__ == '__main__':
sys.exit(main())