mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 15:38:11 +00:00
Changed placeholder for automatic generated mocks
This commit is contained in:
parent
76d8be3395
commit
d87e4e683d
@ -36,7 +36,7 @@ def store_to_file(dest, parts):
|
|||||||
if not os.path.exists(dir_path):
|
if not os.path.exists(dir_path):
|
||||||
os.makedirs(dir_path)
|
os.makedirs(dir_path)
|
||||||
open(os.path.join(dir_path, '__init__.py'), 'w').close()
|
open(os.path.join(dir_path, '__init__.py'), 'w').close()
|
||||||
open(os.path.join(dir_path, '.mock'), 'w').close()
|
open(os.path.join(dir_path, '.mock-generated'), 'w').close()
|
||||||
|
|
||||||
f = open(os.path.join(dir_path, filename + '.py'), 'a')
|
f = open(os.path.join(dir_path, filename + '.py'), 'a')
|
||||||
f.write(line)
|
f.write(line)
|
||||||
@ -63,7 +63,7 @@ def build_directory(dir, dest):
|
|||||||
def clear_directory(top_dir):
|
def clear_directory(top_dir):
|
||||||
print("Clearing up directory", top_dir)
|
print("Clearing up directory", top_dir)
|
||||||
for root, dirs, files in os.walk(top_dir, topdown=False):
|
for root, dirs, files in os.walk(top_dir, topdown=False):
|
||||||
if '.mock' not in files:
|
if '.mock-generated' not in files:
|
||||||
#print("Not a mock directory", root)
|
#print("Not a mock directory", root)
|
||||||
continue
|
continue
|
||||||
for name in files:
|
for name in files:
|
||||||
|
Loading…
Reference in New Issue
Block a user