Sean Dague | a3d2ab7 | 2013-01-12 08:43:49 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python |
Jay Pipes | 257d3f8 | 2012-07-08 23:01:31 -0400 | [diff] [blame] | 2 | |
ZhiQiang Fan | 39f9722 | 2013-09-20 04:49:44 +0800 | [diff] [blame] | 3 | # Copyright 2012 OpenStack Foundation |
Jay Pipes | 257d3f8 | 2012-07-08 23:01:31 -0400 | [diff] [blame] | 4 | # 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 | """ |
| 19 | Track test skips via launchpadlib API and raise alerts if a bug |
| 20 | is fixed but a skip is still in the Tempest test code |
| 21 | """ |
| 22 | |
Masayuki Igawa | 3bc7395 | 2017-04-20 17:11:58 +0900 | [diff] [blame] | 23 | from tempest.lib.cmd import skip_tracker |
Matthew Treinish | bae2a99 | 2013-10-16 18:28:10 -0400 | [diff] [blame] | 24 | |
| 25 | |
Jay Pipes | 257d3f8 | 2012-07-08 23:01:31 -0400 | [diff] [blame] | 26 | if __name__ == '__main__': |
Masayuki Igawa | 3bc7395 | 2017-04-20 17:11:58 +0900 | [diff] [blame] | 27 | print("DEPRECATED: `skip_tracker.py` is already deprecated, " |
| 28 | "use `skip-tracker` command instead.") |
| 29 | skip_tracker.main() |