diff --git a/README.md b/README.md index 7de4a39..630c7fb 100644 --- a/README.md +++ b/README.md @@ -160,5 +160,16 @@ Prebuilt binaries are published on the releases page. Linux users can run the portable AppImage. Homebrew and Chocolatey formulas are provided under `packaging/` for easy upgrades on macOS and Windows. +## Running Tests +The test suite relies on the Python packages +[InquirerPy](https://github.com/kazhala/InquirerPy) and +[rich](https://github.com/Textualize/rich). Install them with: + +```bash +pip install -r requirements.txt +``` + +Then execute the tests using `pytest`. + This project is licensed under the [MIT License](./LICENSE). diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..014b52b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +InquirerPy +rich