blob: 44f5874dbfb1e90584dc9da142b2e17481b4cce5 [file] [log] [blame]
Sean Daguea3d2ab72013-01-12 08:43:49 -05001#!/usr/bin/env python
Jay Pipes257d3f82012-07-08 23:01:31 -04002
ZhiQiang Fan39f97222013-09-20 04:49:44 +08003# Copyright 2012 OpenStack Foundation
Jay Pipes257d3f82012-07-08 23:01:31 -04004# All Rights Reserved.
5#
6# Licensed under the Apache License, Version 2.0 (the "License"); you may
7# not use this file except in compliance with the License. You may obtain
8# a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15# License for the specific language governing permissions and limitations
16# under the License.
17
18"""
19Track test skips via launchpadlib API and raise alerts if a bug
20is fixed but a skip is still in the Tempest test code
21"""
22
Masayuki Igawa3bc73952017-04-20 17:11:58 +090023from tempest.lib.cmd import skip_tracker
Matthew Treinishbae2a992013-10-16 18:28:10 -040024
25
Jay Pipes257d3f82012-07-08 23:01:31 -040026if __name__ == '__main__':
Masayuki Igawa3bc73952017-04-20 17:11:58 +090027 print("DEPRECATED: `skip_tracker.py` is already deprecated, "
28 "use `skip-tracker` command instead.")
29 skip_tracker.main()