Merge pull request #75 from microsoft/cybernobie/main

Cybernobie/main
This commit is contained in:
gagb 2024-12-16 17:40:13 -08:00 committed by GitHub
commit c8980d9f41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,15 +95,18 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio
### Running Tests ### Running Tests
To run the tests for this project, use the following command: To run tests, install `hatch` using `pip` or other methods as described [here](https://hatch.pypa.io/dev/install).
```sh ```sh
pip install hatch
hatch shell hatch shell
hatch test hatch test
``` ```
### Running Pre-commit Checks ### Running Pre-commit Checks
Please run the pre-commit checks before submitting a PR.
```sh ```sh
pre-commit run --all-files pre-commit run --all-files
``` ```