mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-12 10:34:30 +00:00
8414d19404
* 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
18 lines
413 B
Python
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()
|