blob: afab7e712bb70d956807a4109f7b466a41928d3a [file] [log] [blame]
Chillar Anand915b3432021-09-02 16:44:59 +05301
2import json
3import os
Rushabh Mehta919a74a2017-06-22 16:37:04 +05304
5from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
Chillar Anand915b3432021-09-02 16:44:59 +05306
Rushabh Mehta919a74a2017-06-22 16:37:04 +05307
8def complete():
9 with open(os.path.join(os.path.dirname(__file__),
10 'data', 'test_mfg.json'), 'r') as f:
11 data = json.loads(f.read())
12
Rushabh Mehta919a74a2017-06-22 16:37:04 +053013 setup_complete(data)