fix native tests

This commit is contained in:
Dan Halbert 2023-08-22 12:57:42 -04:00
parent 88c22d5052
commit 4a62665175
2 changed files with 1 additions and 3 deletions

View File

@ -61,5 +61,5 @@ jobs:
make -C examples/natmod/uzlib
- name: Test native modules
if: matrix.test == 'all'
run: ./run-natmodtests.py extmod/{btree*,framebuf*,uheapq*,ure*,uzlib*}.py
run: ./run-natmodtests.py extmod/{uheapq*,ure*,uzlib*}.py
working-directory: tests

View File

@ -17,8 +17,6 @@ NATMOD_EXAMPLE_DIR = "../examples/natmod/"
# Supported tests and their corresponding mpy module
TEST_MAPPINGS = {
"btree": "btree/btree_$(ARCH).mpy",
"framebuf": "framebuf/framebuf_$(ARCH).mpy",
"uheapq": "uheapq/uheapq_$(ARCH).mpy",
"urandom": "urandom/urandom_$(ARCH).mpy",
"ure": "ure/ure_$(ARCH).mpy",