srikanth | 116e6e8 | 2014-08-19 07:22:37 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2013 Big Switch Networks, Inc. |
| 3 | # |
| 4 | # Licensed under the Eclipse Public License, Version 1.0 (the |
| 5 | # "License"); you may not use this file except in compliance with the |
| 6 | # License. You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.eclipse.org/legal/epl-v10.html |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 13 | # implied. See the License for the specific language governing |
| 14 | # permissions and limitations under the License. |
| 15 | # |
| 16 | |
| 17 | import os, sys |
| 18 | os.environ['DJANGO_SETTINGS_MODULE'] = 'sdncon.settings' |
| 19 | sys.path.insert(0, os.path.dirname(__file__)) |
| 20 | |
| 21 | test_labels = ['clusterAdmin', "contenttypes", "sessions", "messages"] |
| 22 | smoke_test_labels = ["admin", "rest", "controller", "stats"] |
| 23 | |
| 24 | def runtests(tests=test_labels): |
| 25 | import django.test.utils, django.conf |
| 26 | test_runner = django.test.utils.get_runner(django.conf.settings) |
| 27 | if hasattr(test_runner, "run_tests"): |
| 28 | test_runner = test_runner(verbosity=2).run_tests |
| 29 | failures = test_runner(tests) |
| 30 | sys.exit(0 if failures == 0 else 1) |
| 31 | |
| 32 | def runtests_smoke(): |
| 33 | return runtests(smoke_test_labels) |