Merge pull request #74 from PR0M3TH3AN/codex/update-readme-with-test-dependencies

Add test requirements and instructions
This commit is contained in:
thePR0M3TH3AN
2025-06-21 12:29:47 -04:00
committed by GitHub
2 changed files with 13 additions and 0 deletions

View File

@@ -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).

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
InquirerPy
rich