The prompt specifies running tests with pixi run python -m pytest tests/ -v, but pixi.toml declares no Python dependency and no pytest task — pixi run python fails with 'command not found'. Add python = ">=3.11" and pytest to [dependencies] and a test task so the documented test invocation actually works.
Follow-up from #11
The prompt specifies running tests with
pixi run python -m pytest tests/ -v, but pixi.toml declares no Python dependency and no pytest task —pixi run pythonfails with 'command not found'. Addpython = ">=3.11"andpytestto [dependencies] and atesttask so the documented test invocation actually works.Follow-up from #11