Skip to content
Snippets Groups Projects
Commit f86a0286 authored by alexey.stratulat's avatar alexey.stratulat Committed by dmitriy.gerasimov
Browse files

Hotfix 5281 - Correction of test number 0.

parent 8877210a
No related branches found
No related tags found
1 merge request!70Hotfix 5281 - Correction of test number 0.
Subproject commit 0bd76117bf28dd4e8e6dd14305c16983d0ce8e21
Subproject commit d14fa47f7bb4dfc30fd73d8c645d58ccff24beef
......@@ -5,7 +5,10 @@ import os
app_name = "MyChains"
tmp_dir = os.getcwd() + "/tmp"
#os.mkdir(tmp_dir)
var_dir = os.getcwd() + "/var"
if os.path.isdir(var_dir+"/log") is False:
os.mkdir(var_dir+"/log")
json_string = """{
"modules": ["Crypto", "Events", "Server", "Http", "HttpFolder", "GlobalDB", "Client", "HttpClientSimple", "Mempool",
......
......@@ -4,6 +4,9 @@ from string import Template
def getJsonString(app_name):
tmp_dir = os.getcwd() + "/tmp"
var_dir = os.getcwd() + "/var"
if os.path.isdir(var_dir) is False and os.path.isdir(var_dir+"/log") is False:
os.mkdir(var_dir)
os.mkdir(var_dir+"/log")
ret_tpl = Template("""
{
"modules": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment