Skip to content
Snippets Groups Projects

F integration test baltasar

Closed Alexander Schlemmer requested to merge f-integration-test-baltasar into dev
5 files
+ 95
6
Compare changes
  • Side-by-side
  • Inline

Files

@@ -813,11 +813,17 @@ class Crawler(object):
scoped_records = recordStore.get_records_current_scope()
for record in scoped_records:
self.updateList.append(record)
# TODO: the scoped variables should be cleaned up as soon if the variables
# are no longer in the current scope. This can be implemented as follows,
# but this breaks the test "test_record_structure_generation", because
# some debug info is also deleted. This implementation can be used as soon
# as the remaining problems with the debug_tree are fixed.
# Delete the variables that are no longer needed:
scoped_names = recordStore.get_names_current_scope()
for name in scoped_names:
del recordStore[name]
del generalStore[name]
# scoped_names = recordStore.get_names_current_scope()
# for name in scoped_names:
# del recordStore[name]
# del generalStore[name]
return self.updateList
Loading