Skip to content

Commit c4c1206

Browse files
committed
Small fix so that you can run without docker containers when --dev-no-save is active
1 parent c948fc8 commit c4c1206

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/scenario_runner.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,10 @@ def remove_docker_images(self):
469469
and then link itself in the runs table accordingly.
470470
'''
471471
def register_machine_id(self):
472+
473+
if self._dev_no_save:
474+
return
475+
472476
config = GlobalConfig().config
473477
if config['machine'].get('id') is None \
474478
or not isinstance(config['machine']['id'], int) \

0 commit comments

Comments
 (0)