MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / a_frame

Function a_frame

tests/scripts/test_change_tracking.py:133–137  ·  view source on GitHub ↗
(store)

Source from the content-addressed store, hash-verified

131 a.runs += 1
132
133 def a_frame(store):
134 if a.should_run(store):
135 a_run(store)
136 if b.should_run(store):
137 b.run(store)
138
139 a_frame(store) # cold: A runs (writes slot 1), B runs (reads slot 1)
140 assert a.runs == 1 and b.runs == 1

Calls 3

a_runFunction · 0.85
should_runMethod · 0.80
runMethod · 0.45

Tested by

no test coverage detected