databao-cli is open-source software.
We welcome and encourage everyone to contribute code, documentation, report issues, or ask any questions they may have.
- Python >= 3.11
- uv
-
Clone the repository:
git clone git@github.com:JetBrains/databao-cli.git
-
Install development dependencies:
uv sync
This project uses pytest for testing:
uv run pytestE2E tests are located in a separate project under e2e-tests/.
To run E2E tests:
uv run pytest e2e-testsRun ruff to check and format code:
uv run ruff check src tests e2e-tests
uv run ruff format src tests e2e-tests