4 # create only relevant directories on the board
5 find testing -type d | \
6 grep -v -E "(.(git|idea|vscode)|__pycache__)" | \
7 grep -v -E '^testing/implementation/micropython*' | \
8 xargs -n1 -I {} sh -c "echo Creating directory {} ...; ampy --port ${PORT} mkdir --exists-okay {}"
10 # put top-level modules in place
11 for NAME in agnostic unittest
13 echo "Copying ${NAME}.py ..."
14 ampy --port ${PORT} put ${NAME}.py ${NAME}.py
17 # recursively sync module folders excluding packages
18 # already provided by circuitpython, and excluding
19 # testing packages targeting micropython
22 find ${NAME} -name '*.py'| \
23 grep -v -E '^testing/implementation/micropython*' | \
24 grep -v -E '^testing/mcp.py' | \
25 xargs -n1 -I {} sh -c "echo Copying {} ...; ampy --port ${PORT} put {} {}"