Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 699 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (25 loc) · 699 Bytes

Contributing

Contributions (pull requests) are welcome! Here's how to get started.


Getting started

First fork the library on GitHub.

Then clone and install the library in development mode:

git clone https://github.com/your-username-here/sbiax.git
cd sbiax/ 
pip install -e .

If you're making changes to the code:

Now make your changes. Make sure to include additional tests if necessary.

Next verify the tests all pass by running pytest to check your new changes work:

cd sbiax/tests/
pip install requirements.txt
pytest

Then push your changes back to your fork of the repository:

git push

Finally, open a pull request on GitHub!