summaryrefslogtreecommitdiff
path: root/test/hil/helper/__init__.py
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2026-08-18 14:33:01 +0700
committerGitHub <[email protected]>2026-08-18 14:33:01 +0700
commit11bdbc3eac085e4a946e25a8a614bcbf62e41fa2 (patch)
treec592e9bfb7e097ca0cee9a47673bf6dd42545845 /test/hil/helper/__init__.py
parent2465ea8f435114af3b3c935cc4fbed423d9eac69 (diff)
parentc7290c4d3167766055f492de43f1ede83940e23c (diff)
Merge pull request #3803 from hathach/claude/hil-wedge-containment
hil, ci: contain a wedged USB stack instead of stranding the runner
Diffstat (limited to 'test/hil/helper/__init__.py')
-rw-r--r--test/hil/helper/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/hil/helper/__init__.py b/test/hil/helper/__init__.py
new file mode 100644
index 000000000..a080a2f55
--- /dev/null
+++ b/test/hil/helper/__init__.py
@@ -0,0 +1,4 @@
+# Marks helper/ as a REGULAR package. Without this it is only a PEP 420 namespace portion,
+# and a regular package named `helper` anywhere on sys.path wins over it even though
+# test/hil is sys.path[0] -- one transitive pip install would break every HIL entry point
+# at import. `helper` is a real distribution name on PyPI.