Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 585 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 585 Bytes

PyPrs

To install this as a CLI tool you will need pipx. Once setup simply run the following in the root directory of this project:

pipx install .

You can uninstall it using:

pipx uninstall py-prs

Development

To setup the virtual environment and install dependencies in it run:

make dev

Don't forget to activate the virtual environment:

# bash or zsh
source .venv/bin/activate.fish

# fish
source .venv/bin/activate.fish

# csh
source .venv/bin/activate.csh

To run the tests:

make test