2013-01-12 08:43:49 -05:00
|
|
|
#!/usr/bin/env python
|
2012-07-08 23:01:31 -04:00
|
|
|
|
2013-09-20 04:49:44 +08:00
|
|
|
# Copyright 2012 OpenStack Foundation
|
2012-07-08 23:01:31 -04:00
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Track test skips via launchpadlib API and raise alerts if a bug
|
|
|
|
is fixed but a skip is still in the Tempest test code
|
|
|
|
"""
|
|
|
|
|
2017-04-20 17:11:58 +09:00
|
|
|
from tempest.lib.cmd import skip_tracker
|
2013-10-16 18:28:10 -04:00
|
|
|
|
|
|
|
|
2012-07-08 23:01:31 -04:00
|
|
|
if __name__ == '__main__':
|
2017-04-20 17:11:58 +09:00
|
|
|
print("DEPRECATED: `skip_tracker.py` is already deprecated, "
|
|
|
|
"use `skip-tracker` command instead.")
|
|
|
|
skip_tracker.main()
|