JIRA: BOTTLENECKS-29
[bottlenecks.git] / vstf / vstf / controller / settings / tester_settings.py
1 ##############################################################################
2 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 import logging
12
13 import vstf.controller.settings.settings as sets
14
15 LOG = logging.getLogger(__name__)
16
17
18 class TesterSettings(sets.Settings):
19     def __init__(self, path="/etc/vstf/env/",
20                  filename="tester.json",
21                  mode=sets.SETS_SINGLE):
22         super(TesterSettings, self).__init__(path, filename, mode)