51b73e804f033167085462fa2a59e00adc29e206
[multicloud/framework.git] / multivimbroker / multivimbroker / settings-cover.py
1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at:
4 #       http://www.apache.org/licenses/LICENSE-2.0
5 #
6 # Unless required by applicable law or agreed to in writing, software
7 # distributed under the License is distributed on an "AS IS" BASIS,
8 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
10 from multivimbroker.settings import * # noqa
11 from multivimbroker.settings import INSTALLED_APPS
12
13 INSTALLED_APPS.append('django_nose')
14
15 TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
16
17 NOSE_ARGS = [
18     '--with-coverage',
19     '--cover-package=multivimbroker',
20 ]