webassembly/mpconfigport: Enable importing of .mpy files.

Signed-off-by: Damien George <damien@micropython.org>
pull/14479/head
Damien George 2024-05-14 15:18:48 +10:00
rodzic fa23e4b093
commit 154d602b6e
2 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -39,6 +39,7 @@
#endif
#define MICROPY_ALLOC_PATH_MAX (256)
#define MICROPY_PERSISTENT_CODE_LOAD (1)
#define MICROPY_COMP_ALLOW_TOP_LEVEL_AWAIT (1)
#define MICROPY_READER_VFS (MICROPY_VFS)
#define MICROPY_ENABLE_GC (1)

Wyświetl plik

@ -702,7 +702,6 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
skip_tests.add("micropython/emg_exc.py")
skip_tests.add("micropython/extreme_exc.py")
skip_tests.add("micropython/heapalloc_exc_compressed_emg_exc.py")
skip_tests.add("micropython/import_mpy_invalid.py")
# Some tests are known to fail on 64-bit machines
if pyb is None and platform.architecture()[0] == "64bit":