summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/controller/settings/tester_settings.py
blob: fb116a8dbb530b177fdd7944fb3cf344116906b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python
# -*- coding: utf8 -*-
# author: wly
# date: 2015/11/17
# see license for license details

import logging

import vstf.controller.settings.settings as sets

LOG = logging.getLogger(__name__)


class TesterSettings(sets.Settings):
    def __init__(self, path="/etc/vstf/env/",
                 filename="tester.json",
                 mode=sets.SETS_SINGLE):
        super(TesterSettings, self).__init__(path, filename, mode)