Skip to content

Commit

Permalink
tests/cpydiff/core_import_split_ns_pkgs: Test for split namespace pac…
Browse files Browse the repository at this point in the history
…kages.
  • Loading branch information
Paul Sokolovsky committed May 3, 2017
1 parent 3923f96 commit 92657c6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/cpydiff/core_import_split_ns_pkgs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
categories: Core,import
description: MicroPython does't support namespace packages split across filesystem.
cause: MicroPython's import system is highly optimized for simplicity, minimal memory usage, and minimal filesystem search overhead.
workaround: Don't install modules belonging to the same namespace package in different directories. For MicroPython, it's recommended to have at most 3-component module search paths: for your current application, per-user (writable), system-wide (non-writable).
"""
import sys
sys.path.append(sys.path[1] + "/modules")
sys.path.append(sys.path[1] + "/modules2")

import subpkg.foo
import subpkg.bar

print("Two modules of a split namespace package imported")
Empty file.
Empty file.

0 comments on commit 92657c6

Please sign in to comment.