blob: 6e1e46319d414ca0f38bcdee04f1cdbc2bde8004 [file] [log] [blame]
#! /usr/bin/env python
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
"""
gpunit is similar to unit2 in python but runs with our GpMgmtTestRunner and GpMgmtTextTestResult.
The TextTestResult from unittest generates multi-line results for unit tests which cannot
be handled by Pulse.
The GpMgmtTextTestResult class has been created to generate one liner results for unit tests
so that it can be integrated with Pulse.
"""
__unittest = True
import unittest2 as unittest
from unittest2.main import USAGE_AS_MAIN
from gppylib import gpMgmttest
unittest.TestProgram.USAGE = USAGE_AS_MAIN
unittest.TestProgram(module=None, testRunner=gpMgmttest.GpMgmtTestRunner)