Add instructions to install test dependencies

This commit is contained in:
Rikko 2022-08-29 22:57:28 +05:30
parent ed5a5853d9
commit e2e2816948

View file

@ -57,7 +57,14 @@ A plugin manager for the game - [Bombsquad](https://www.froemling.net/apps/bombs
## Tests ## Tests
Metadata tests are automatically executed whenever a pull request is opened and a commit is pushed. You can also run them Metadata tests are automatically executed whenever a pull request is opened and a commit is pushed. You can also run them
locally by executing the following in the project's root directory: locally by installing test dependencies with:
```bash
$ pip install -r test/pip_reqs.txt
```
and then executing the following in the project's root directory:
```bash ```bash
$ python -m unittest discover $ python -m unittest discover
``` ```