Tetiana Churikova 8414d19404 Config support and other little improvements (#231)
* Configure work with remote config; add stepa to verify issue title;

* transfer settings to global .gitignore

* Change channel and repo path

* Delete local env by default

* change locator for BountyFooters
2018-01-24 12:58:58 +02:00

18 lines
413 B
Python

import configparser
class TestData(object):
def __init__(self):
self.test_name = None
self.config = configparser.ConfigParser()
# define here path to your config.ini file
#example - config_example.ini
self.config.read('config.ini')
self.base_case_issue = dict()
self.base_case_issue['title'] = 'Very first auto_test_bounty'
test_data = TestData()