On Windows:
.\scripts\init-venv.batOn macOS/Linux:
./scripts/init-venv.shThen, you can configure the virtual environment in Cursor (VS Code) to run the code directly in the IDE.
On Windows:
.\scripts\enter-venv.batOn macOS/Linux:
./scripts/enter-venv.shuv add <package_name>uv remove <package_name>If you need other commands, please refer to the uv documentation.
Ensure that you are in the app directory, and entered the virtual environment.
mcp dev run_mcp.pyuv run run_mcp.pyuv run run_server.pyOn Windows:
.\scripts\pytest.batOn macOS/Linux:
./scripts/pytest.shAssume that you are in the app directory.
To run all tests:
pytestTo run a specific test, for example:
pytest tests/foo.py::test_bar -vIf you need to view more detailed logs, you can use the command with -s and -vv:
pytest -s tests/foo.py::test_bar -vv