24 lines
324 B
TOML
24 lines
324 B
TOML
[settings]
|
|
python.uv_venv_auto = "source"
|
|
|
|
[tools]
|
|
"uv" = "latest"
|
|
|
|
[tasks.presto]
|
|
run = '''
|
|
mpremote fs cp main.py :main.py
|
|
mpremote reset
|
|
'''
|
|
|
|
[tasks.poc]
|
|
run = '''
|
|
mpremote fs cp poc.py :main.py
|
|
mpremote reset
|
|
'''
|
|
|
|
[tasks.emulator]
|
|
run = 'pimoroni-emulator --device presto main.py'
|
|
|
|
[tasks.test]
|
|
run = 'pytest tests/ -v'
|