summaryrefslogtreecommitdiff
path: root/test/hil/helper/__init__.py
diff options
context:
space:
mode:
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.