From 53df34cb5eaa5207305c19d035ad2d25a06a0b12 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sat, 21 Jun 2025 12:29:27 -0400 Subject: [PATCH] docs: add test requirements --- README.md | 11 +++++++++++ requirements.txt | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 requirements.txt 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