beebium 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. beebium-0.1.2/.gitignore +139 -0
  2. beebium-0.1.2/COPYING.txt +674 -0
  3. beebium-0.1.2/PKG-INFO +436 -0
  4. beebium-0.1.2/README.md +410 -0
  5. beebium-0.1.2/examples/README.md +60 -0
  6. beebium-0.1.2/examples/_demo.py +86 -0
  7. beebium-0.1.2/examples/audio_streaming.py +32 -0
  8. beebium-0.1.2/examples/basic_programs.py +24 -0
  9. beebium-0.1.2/examples/debugging.py +51 -0
  10. beebium-0.1.2/examples/device_inspection.py +41 -0
  11. beebium-0.1.2/examples/disc_drives.py +45 -0
  12. beebium-0.1.2/examples/ext_acorn_rtc.py +33 -0
  13. beebium-0.1.2/examples/ext_acorn_scsi.py +31 -0
  14. beebium-0.1.2/examples/ext_aun.py +40 -0
  15. beebium-0.1.2/examples/ext_host_serial.py +32 -0
  16. beebium-0.1.2/examples/ext_piconet.py +26 -0
  17. beebium-0.1.2/examples/ext_rpc_serial.py +30 -0
  18. beebium-0.1.2/examples/extension_discovery.py +62 -0
  19. beebium-0.1.2/examples/keyboard_and_screen.py +32 -0
  20. beebium-0.1.2/examples/lifecycle.py +34 -0
  21. beebium-0.1.2/examples/memory_access.py +41 -0
  22. beebium-0.1.2/examples/serial_demo.py +191 -0
  23. beebium-0.1.2/examples/sideways_roms.py +31 -0
  24. beebium-0.1.2/examples/video_capture.py +32 -0
  25. beebium-0.1.2/examples/wiggle.py +38 -0
  26. beebium-0.1.2/pyproject.toml +131 -0
  27. beebium-0.1.2/scripts/check_proto_regen.sh +57 -0
  28. beebium-0.1.2/scripts/generate_proto.sh +114 -0
  29. beebium-0.1.2/scripts/test-wheel.sh +99 -0
  30. beebium-0.1.2/src/beebium/client/__init__.py +173 -0
  31. beebium-0.1.2/src/beebium/client/_proto/__init__.py +28 -0
  32. beebium-0.1.2/src/beebium/client/_proto/audio_pb2.py +62 -0
  33. beebium-0.1.2/src/beebium/client/_proto/audio_pb2.pyi +244 -0
  34. beebium-0.1.2/src/beebium/client/_proto/audio_pb2_grpc.py +160 -0
  35. beebium-0.1.2/src/beebium/client/_proto/audio_pb2_grpc.pyi +88 -0
  36. beebium-0.1.2/src/beebium/client/_proto/debugger_pb2.py +190 -0
  37. beebium-0.1.2/src/beebium/client/_proto/debugger_pb2.pyi +2116 -0
  38. beebium-0.1.2/src/beebium/client/_proto/debugger_pb2_grpc.py +2689 -0
  39. beebium-0.1.2/src/beebium/client/_proto/debugger_pb2_grpc.pyi +669 -0
  40. beebium-0.1.2/src/beebium/client/_proto/disc_pb2.py +94 -0
  41. beebium-0.1.2/src/beebium/client/_proto/disc_pb2.pyi +666 -0
  42. beebium-0.1.2/src/beebium/client/_proto/disc_pb2_grpc.py +480 -0
  43. beebium-0.1.2/src/beebium/client/_proto/disc_pb2_grpc.pyi +202 -0
  44. beebium-0.1.2/src/beebium/client/_proto/econet_pb2.py +78 -0
  45. beebium-0.1.2/src/beebium/client/_proto/econet_pb2.pyi +586 -0
  46. beebium-0.1.2/src/beebium/client/_proto/econet_pb2_grpc.py +347 -0
  47. beebium-0.1.2/src/beebium/client/_proto/econet_pb2_grpc.pyi +163 -0
  48. beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2.py +58 -0
  49. beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2.pyi +171 -0
  50. beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2_grpc.py +188 -0
  51. beebium-0.1.2/src/beebium/client/_proto/econet_transport_pb2_grpc.pyi +136 -0
  52. beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2.py +56 -0
  53. beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2.pyi +114 -0
  54. beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2_grpc.py +182 -0
  55. beebium-0.1.2/src/beebium/client/_proto/extension_rpc_pb2_grpc.pyi +114 -0
  56. beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2.py +84 -0
  57. beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2.pyi +688 -0
  58. beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2_grpc.py +196 -0
  59. beebium-0.1.2/src/beebium/client/_proto/extension_ui_pb2_grpc.pyi +148 -0
  60. beebium-0.1.2/src/beebium/client/_proto/indicator_pb2.py +74 -0
  61. beebium-0.1.2/src/beebium/client/_proto/indicator_pb2.pyi +268 -0
  62. beebium-0.1.2/src/beebium/client/_proto/indicator_pb2_grpc.py +217 -0
  63. beebium-0.1.2/src/beebium/client/_proto/indicator_pb2_grpc.pyi +118 -0
  64. beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2.py +118 -0
  65. beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2.pyi +776 -0
  66. beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2_grpc.py +943 -0
  67. beebium-0.1.2/src/beebium/client/_proto/keyboard_pb2_grpc.pyi +418 -0
  68. beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2.py +64 -0
  69. beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2.pyi +293 -0
  70. beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2_grpc.py +119 -0
  71. beebium-0.1.2/src/beebium/client/_proto/peripheral_extension_pb2_grpc.pyi +79 -0
  72. beebium-0.1.2/src/beebium/client/_proto/protocol_fingerprint.py +15 -0
  73. beebium-0.1.2/src/beebium/client/_proto/serial_pb2.py +54 -0
  74. beebium-0.1.2/src/beebium/client/_proto/serial_pb2.pyi +154 -0
  75. beebium-0.1.2/src/beebium/client/_proto/serial_pb2_grpc.py +173 -0
  76. beebium-0.1.2/src/beebium/client/_proto/serial_pb2_grpc.pyi +112 -0
  77. beebium-0.1.2/src/beebium/client/_proto/sideways_pb2.py +78 -0
  78. beebium-0.1.2/src/beebium/client/_proto/sideways_pb2.pyi +555 -0
  79. beebium-0.1.2/src/beebium/client/_proto/sideways_pb2_grpc.py +257 -0
  80. beebium-0.1.2/src/beebium/client/_proto/sideways_pb2_grpc.pyi +121 -0
  81. beebium-0.1.2/src/beebium/client/_proto/system_pb2.py +96 -0
  82. beebium-0.1.2/src/beebium/client/_proto/system_pb2.pyi +779 -0
  83. beebium-0.1.2/src/beebium/client/_proto/system_pb2_grpc.py +473 -0
  84. beebium-0.1.2/src/beebium/client/_proto/system_pb2_grpc.pyi +193 -0
  85. beebium-0.1.2/src/beebium/client/_proto/tube_pb2.py +68 -0
  86. beebium-0.1.2/src/beebium/client/_proto/tube_pb2.pyi +291 -0
  87. beebium-0.1.2/src/beebium/client/_proto/tube_pb2_grpc.py +301 -0
  88. beebium-0.1.2/src/beebium/client/_proto/tube_pb2_grpc.pyi +133 -0
  89. beebium-0.1.2/src/beebium/client/_proto/video_pb2.py +102 -0
  90. beebium-0.1.2/src/beebium/client/_proto/video_pb2.pyi +978 -0
  91. beebium-0.1.2/src/beebium/client/_proto/video_pb2_grpc.py +404 -0
  92. beebium-0.1.2/src/beebium/client/_proto/video_pb2_grpc.pyi +238 -0
  93. beebium-0.1.2/src/beebium/client/_version.py +15 -0
  94. beebium-0.1.2/src/beebium/client/audio.py +164 -0
  95. beebium-0.1.2/src/beebium/client/basic.py +259 -0
  96. beebium-0.1.2/src/beebium/client/client.py +660 -0
  97. beebium-0.1.2/src/beebium/client/connection.py +266 -0
  98. beebium-0.1.2/src/beebium/client/cpu.py +278 -0
  99. beebium-0.1.2/src/beebium/client/crtc.py +219 -0
  100. beebium-0.1.2/src/beebium/client/debugger.py +869 -0
  101. beebium-0.1.2/src/beebium/client/disassemble.py +291 -0
  102. beebium-0.1.2/src/beebium/client/disc.py +581 -0
  103. beebium-0.1.2/src/beebium/client/discovery.py +444 -0
  104. beebium-0.1.2/src/beebium/client/econet.py +408 -0
  105. beebium-0.1.2/src/beebium/client/econet_transport.py +179 -0
  106. beebium-0.1.2/src/beebium/client/exceptions.py +134 -0
  107. beebium-0.1.2/src/beebium/client/extension.py +258 -0
  108. beebium-0.1.2/src/beebium/client/extension_rpc.py +70 -0
  109. beebium-0.1.2/src/beebium/client/extension_ui.py +359 -0
  110. beebium-0.1.2/src/beebium/client/extensions.py +278 -0
  111. beebium-0.1.2/src/beebium/client/host.py +153 -0
  112. beebium-0.1.2/src/beebium/client/indicators.py +112 -0
  113. beebium-0.1.2/src/beebium/client/keyboard.py +857 -0
  114. beebium-0.1.2/src/beebium/client/keyboard_map.py +173 -0
  115. beebium-0.1.2/src/beebium/client/latch.py +108 -0
  116. beebium-0.1.2/src/beebium/client/memory.py +769 -0
  117. beebium-0.1.2/src/beebium/client/py.typed +0 -0
  118. beebium-0.1.2/src/beebium/client/pytest_plugin.py +298 -0
  119. beebium-0.1.2/src/beebium/client/screen.py +303 -0
  120. beebium-0.1.2/src/beebium/client/serial.py +119 -0
  121. beebium-0.1.2/src/beebium/client/server.py +462 -0
  122. beebium-0.1.2/src/beebium/client/sideways.py +366 -0
  123. beebium-0.1.2/src/beebium/client/sound.py +173 -0
  124. beebium-0.1.2/src/beebium/client/strings.py +158 -0
  125. beebium-0.1.2/src/beebium/client/system.py +590 -0
  126. beebium-0.1.2/src/beebium/client/tube.py +86 -0
  127. beebium-0.1.2/src/beebium/client/tube_system.py +181 -0
  128. beebium-0.1.2/src/beebium/client/tube_ula.py +345 -0
  129. beebium-0.1.2/src/beebium/client/via.py +216 -0
  130. beebium-0.1.2/src/beebium/client/video.py +728 -0
  131. beebium-0.1.2/src/beebium/client/video_ula.py +133 -0
  132. beebium-0.1.2/src/beebium/ext/econet/aun/__init__.py +185 -0
  133. beebium-0.1.2/src/beebium/ext/econet/aun/_proto/__init__.py +11 -0
  134. beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2.py +72 -0
  135. beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2.pyi +344 -0
  136. beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2_grpc.py +314 -0
  137. beebium-0.1.2/src/beebium/ext/econet/aun/_proto/aun_pb2_grpc.pyi +151 -0
  138. beebium-0.1.2/src/beebium/ext/econet/piconet/__init__.py +86 -0
  139. beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/__init__.py +11 -0
  140. beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2.py +52 -0
  141. beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2.pyi +85 -0
  142. beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2_grpc.py +156 -0
  143. beebium-0.1.2/src/beebium/ext/econet/piconet/_proto/piconet_service_pb2_grpc.pyi +118 -0
  144. beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/__init__.py +125 -0
  145. beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/__init__.py +11 -0
  146. beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2.py +70 -0
  147. beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2.pyi +262 -0
  148. beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2_grpc.py +293 -0
  149. beebium-0.1.2/src/beebium/ext/peripheral/acorn_rtc/_proto/acorn_rtc_pb2_grpc.pyi +139 -0
  150. beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/__init__.py +114 -0
  151. beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/__init__.py +11 -0
  152. beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2.py +74 -0
  153. beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2.pyi +415 -0
  154. beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2_grpc.py +203 -0
  155. beebium-0.1.2/src/beebium/ext/peripheral/acorn_scsi/_proto/scsi_host_adapter_pb2_grpc.pyi +103 -0
  156. beebium-0.1.2/src/beebium/ext/peripheral/host_serial/__init__.py +99 -0
  157. beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/__init__.py +11 -0
  158. beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2.py +54 -0
  159. beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2.pyi +126 -0
  160. beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2_grpc.py +176 -0
  161. beebium-0.1.2/src/beebium/ext/peripheral/host_serial/_proto/host_serial_pb2_grpc.pyi +115 -0
  162. beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/__init__.py +82 -0
  163. beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/__init__.py +11 -0
  164. beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2.py +60 -0
  165. beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2.pyi +149 -0
  166. beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2_grpc.py +210 -0
  167. beebium-0.1.2/src/beebium/ext/peripheral/rpc_serial/_proto/rpc_serial_pb2_grpc.pyi +106 -0
  168. beebium-0.1.2/tests/conftest.py +182 -0
  169. beebium-0.1.2/tests/firetrack.py +113 -0
  170. beebium-0.1.2/tests/test_acorn_extensions.py +101 -0
  171. beebium-0.1.2/tests/test_audio.py +77 -0
  172. beebium-0.1.2/tests/test_aun.py +198 -0
  173. beebium-0.1.2/tests/test_autoboot.py +507 -0
  174. beebium-0.1.2/tests/test_break_segfault.py +251 -0
  175. beebium-0.1.2/tests/test_commstar_prestel_keys.py +71 -0
  176. beebium-0.1.2/tests/test_commstar_serial_receive.py +119 -0
  177. beebium-0.1.2/tests/test_connection_tracking.py +207 -0
  178. beebium-0.1.2/tests/test_debugger.py +741 -0
  179. beebium-0.1.2/tests/test_disc_eject.py +209 -0
  180. beebium-0.1.2/tests/test_discovery_capability.py +94 -0
  181. beebium-0.1.2/tests/test_econet.py +423 -0
  182. beebium-0.1.2/tests/test_econet_transport.py +124 -0
  183. beebium-0.1.2/tests/test_extension_framework.py +265 -0
  184. beebium-0.1.2/tests/test_extension_ui.py +224 -0
  185. beebium-0.1.2/tests/test_extensions.py +176 -0
  186. beebium-0.1.2/tests/test_firetrack_saa5050.py +123 -0
  187. beebium-0.1.2/tests/test_frame_geometry_stability.py +141 -0
  188. beebium-0.1.2/tests/test_heartbeat.py +66 -0
  189. beebium-0.1.2/tests/test_host.py +127 -0
  190. beebium-0.1.2/tests/test_keyboard.py +258 -0
  191. beebium-0.1.2/tests/test_keyboard_locks.py +264 -0
  192. beebium-0.1.2/tests/test_keyboard_map.py +141 -0
  193. beebium-0.1.2/tests/test_machine_name_advertisement.py +209 -0
  194. beebium-0.1.2/tests/test_memory.py +629 -0
  195. beebium-0.1.2/tests/test_pacing.py +116 -0
  196. beebium-0.1.2/tests/test_parasite_state.py +149 -0
  197. beebium-0.1.2/tests/test_piconet.py +59 -0
  198. beebium-0.1.2/tests/test_plugin_discovery.py +71 -0
  199. beebium-0.1.2/tests/test_protocol_fingerprint.py +101 -0
  200. beebium-0.1.2/tests/test_revs_timing.py +280 -0
  201. beebium-0.1.2/tests/test_screen.py +304 -0
  202. beebium-0.1.2/tests/test_screen_text.py +652 -0
  203. beebium-0.1.2/tests/test_serial.py +122 -0
  204. beebium-0.1.2/tests/test_serial_cts.py +108 -0
  205. beebium-0.1.2/tests/test_serial_extensions.py +191 -0
  206. beebium-0.1.2/tests/test_server_crash_diagnostics.py +91 -0
  207. beebium-0.1.2/tests/test_server_discovery.py +195 -0
  208. beebium-0.1.2/tests/test_shutdown.py +245 -0
  209. beebium-0.1.2/tests/test_sideways.py +118 -0
  210. beebium-0.1.2/tests/test_signal_shutdown.py +193 -0
  211. beebium-0.1.2/tests/test_strings.py +196 -0
  212. beebium-0.1.2/tests/test_system.py +574 -0
  213. beebium-0.1.2/tests/test_teletext_screen.py +235 -0
  214. beebium-0.1.2/tests/test_tube_break_reset.py +215 -0
  215. beebium-0.1.2/tests/test_tube_chuckie_egg.py +174 -0
  216. beebium-0.1.2/tests/test_tube_elite.py +206 -0
  217. beebium-0.1.2/tests/test_tube_osbyte_throughput.py +189 -0
  218. beebium-0.1.2/tests/test_typing_watch.py +90 -0
  219. beebium-0.1.2/tests/tube_test_helpers.py +326 -0
  220. beebium-0.1.2/tests_packaging/test_wheel_packaging.py +168 -0
  221. beebium-0.1.2/uv.lock +436 -0
@@ -0,0 +1,139 @@
1
+ # Build directories
2
+ build/
3
+ build-*/
4
+ cmake-build-*/
5
+ out/
6
+
7
+ # vcpkg (cloned/installed locally or by CI)
8
+ vcpkg/
9
+ vcpkg_installed/
10
+ vcpkg_installed-*/
11
+
12
+ # CMake generated files
13
+ CMakeCache.txt
14
+ CMakeFiles/
15
+ cmake_install.cmake
16
+ Makefile
17
+ compile_commands.json
18
+ CTestTestfile.cmake
19
+ Testing/
20
+ _deps/
21
+ DartConfiguration.tcl
22
+
23
+ # catch_discover_tests writes <target>-<hash>_include.cmake plus a
24
+ # matching *_tests.cmake into the binary dir; ignore in case they
25
+ # leak into the source tree from an accidental in-source build.
26
+ *_include.cmake
27
+ *_tests.cmake
28
+
29
+ # Generated 6502 sources / generator binary -- correctly produced
30
+ # under build/ but ignore in case of an accidental in-source build.
31
+ /src/6502/6502_internal.inl
32
+ /src/6502/third_party/b2/6502_gen
33
+
34
+ # Generated preset bundles -- correctly produced under
35
+ # build/src/server/presets/.
36
+ /src/server/presets/
37
+
38
+ # Compiled objects and libraries
39
+ *.o
40
+ *.obj
41
+ *.a
42
+ *.lib
43
+ *.so
44
+ *.dylib
45
+ *.dll
46
+
47
+ # Executables
48
+ *.exe
49
+ *.out
50
+
51
+ # AI assistant configuration (user-specific)
52
+ .claude/
53
+ .kilo/
54
+
55
+ # IDE and editor files
56
+ .vscode/
57
+ .idea/
58
+ *.xcworkspace/
59
+ .vs/
60
+ *.sln
61
+ *.vcxproj*
62
+
63
+ # LSP and tooling caches
64
+ .cache/
65
+
66
+ # Xcode user-specific data (project files are tracked)
67
+ xcuserdata/
68
+ *.xcuserstate
69
+
70
+ # Xcode build trees. Anywhere, under any suffix: an in-tree DerivedData holds
71
+ # tens of thousands of files including checked-out SwiftPM dependencies, each
72
+ # of which is its own git repository, so a stray `git add -A` both bloats the
73
+ # history and creates accidental embedded repositories.
74
+ DerivedData/
75
+ DerivedData-*/
76
+
77
+ # Editor swap/backup files
78
+ *~
79
+ *.swp
80
+ *.swo
81
+ .*.swp
82
+ \#*\#
83
+ .#*
84
+
85
+ # macOS
86
+ .DS_Store
87
+ ._*
88
+
89
+ .jbeval
90
+
91
+ # LLVM profiling
92
+ *.profraw
93
+ *.profdata
94
+
95
+ # Python
96
+ __pycache__/
97
+ *.py[cod]
98
+ *$py.class
99
+ *.egg-info/
100
+ .eggs/
101
+ dist/
102
+ .venv/
103
+ *.egg
104
+
105
+ # Node.js (oracle project)
106
+ node_modules/
107
+ oracle/dist/
108
+ oracle/public
109
+
110
+ /docs/manuals/
111
+ /docs/manuals_text/
112
+ /docs/datasheets/
113
+ /discs/games/
114
+ /discs/l3fs/
115
+
116
+ # Local scratch directory
117
+ /tmp/
118
+
119
+ # L3FS SCSI hard disc images -- regenerated on demand by the oaknut
120
+ # `disc` tool from Acorn distribution sources. The committed
121
+ # tests/assets/scsi/L3FS-KL.adl floppy is the only checked-in image.
122
+ /tests/assets/scsi/l3fs.dat
123
+ /tests/assets/scsi/l3fs.dsc
124
+ /tests/assets/scsi/l3fs-blank-20mb.dat
125
+ /tests/assets/scsi/l3fs-blank-20mb.dsc
126
+
127
+ disassembly/*
128
+ !disassembly/*.py
129
+ # Local machine-specific development notes and configuration (sensitive)
130
+ docs/local-*.md
131
+ local-*
132
+ **/local-*
133
+
134
+ # Local packaging build outputs (Linux bundle tarballs)
135
+ _artifacts/
136
+
137
+ # Integration tests are server end-to-end tests driven by the Python client;
138
+ # they resolve fresh against the source-tree client, so their locks are not committed.
139
+ integration_tests/*/uv.lock