# Contributing Thanks for considering contributing! Please read this document to learn the various ways you can contribute to this project and how to go about doing it. ## Bug reports and feature requests ### Did you find a bug? First, do [a quick search](https://github.com/chaimain/asgardpy/issues) to see whether your issue has already been reported. If your issue has already been reported, please comment on the existing issue. Otherwise, open [a new GitHub issue](https://github.com/chaimain/asgardpy/issues). Be sure to include a clear title and description. The description should include as much relevant information as possible. The description should explain how to reproduce the erroneous behavior as well as the behavior you expect to see. Ideally you would include a code sample or an executable test case demonstrating the expected behavior. ### Do you have a suggestion for an enhancement or new feature? We use GitHub issues to track feature requests. Before you create a feature request: * Make sure you have a clear idea of the enhancement you would like. If you have a vague idea, consider discussing it first on a GitHub issue. * Check the documentation to make sure your feature does not already exist. * Do [a quick search](https://github.com/chaimain/asgardpy/issues) to see whether your feature has already been suggested. When creating your request, please: * Provide a clear title and description. * Explain why the enhancement would be useful. It may be helpful to highlight the feature in other libraries. * Include code examples to demonstrate how the enhancement would be used. ## Making a pull request When you're ready to contribute code to address an open issue, please follow these guidelines to help us be able to review your pull request (PR) quickly. 1. **Initial setup** (only do this once)
Expand details 👇
If you haven't already done so, please [fork](https://help.github.com/en/enterprise/2.13/user/articles/fork-a-repo) this repository on GitHub. Then clone your fork locally with git clone https://github.com/USERNAME/asgardpy.git or git clone git@github.com:USERNAME/asgardpy.git At this point the local clone of your fork only knows that it came from *your* repo, github.com/USERNAME/asgardpy.git, but doesn't know anything the *main* repo, [https://github.com/chaimain/asgardpy.git](https://github.com/chaimain/asgardpy). You can see this by running git remote -v which will output something like this: origin https://github.com/USERNAME/asgardpy.git (fetch) origin https://github.com/USERNAME/asgardpy.git (push) This means that your local clone can only track changes from your fork, but not from the main repo, and so you won't be able to keep your fork up-to-date with the main repo over time. Therefore you'll need to add another "remote" to your clone that points to [https://github.com/chaimain/asgardpy.git](https://github.com/chaimain/asgardpy). To do this, run the following: git remote add upstream https://github.com/chaimain/asgardpy.git Now if you do `git remote -v` again, you'll see origin https://github.com/USERNAME/asgardpy.git (fetch) origin https://github.com/USERNAME/asgardpy.git (push) upstream https://github.com/chaimain/asgardpy.git (fetch) upstream https://github.com/chaimain/asgardpy.git (push) Finally, you'll need to create a Python 3 virtual environment suitable for working on this project. There a number of tools out there that making working with virtual environments easier. The most direct way is with the [`venv` module](https://docs.python.org/3.7/library/venv.html) in the standard library, but if you're new to Python or you don't already have a recent Python 3 version installed on your machine, we recommend [Miniconda](https://docs.conda.io/en/latest/miniconda.html). On Mac, for example, you can install Miniconda with [Homebrew](https://brew.sh/): brew install miniconda Then you can create and activate a new Python environment by running: conda create -n asgardpy python=3.11 conda activate asgardpy Once your virtual environment is activated, you can install your local clone in "editable mode" with pip install -e .[dev] The "editable mode" comes from the `-e` argument to `pip`, and essential just creates a symbolic link from the site-packages directory of your virtual environment to the source code in your local clone. That way any changes you make will be immediately reflected in your virtual environment.
2. **Ensure your fork is up-to-date**
Expand details 👇
Once you've added an "upstream" remote pointing to [https://github.com/chaimain/asgardpy.git](https://github.com/chaimain/asgardpy), keeping your fork up-to-date is easy: git checkout main # if not already on main git pull --rebase upstream main git push
3. **Create a new branch to work on your fix or enhancement**
Expand details 👇
Committing directly to the main branch of your fork is not recommended. It will be easier to keep your fork clean if you work on a separate branch for each contribution you intend to make. You can create a new branch with # replace BRANCH with whatever name you want to give it git checkout -b BRANCH git push -u origin BRANCH
4. **Test your changes**
Expand details 👇
Our continuous integration (CI) testing runs [a number of checks](https://github.com/chaimain/asgardpy/actions) for each pull request on [GitHub Actions](https://github.com/features/actions). You can run most of these tests locally, which is something you should do *before* opening a PR to help speed up the review process and make it easier for us. First, you should run [`isort`](https://github.com/PyCQA/isort) and [`black`](https://github.com/psf/black) to make sure you code is formatted consistently. Many IDEs support code formatters as plugins, so you may be able to setup isort and black to run automatically every time you save. For example, [`black.vim`](https://github.com/psf/black/tree/master/plugin) will give you this functionality in Vim. But both `isort` and `black` are also easy to run directly from the command line. Just run this from the root of your clone: isort src/asgardpy black src/asgardpy Our CI also uses [`ruff`](https://github.com/chaimain/asgardpy/tree/main/tests) to lint the code base, [`mypy`](http://mypy-lang.org/) for type-checking and [`codespell`](https://github.com/codespell-project/codespell) for a basic spelling check. You should run these next with ruff check src/asgardpy mypy src/asgardpy codespell src/asgardpy We also have [`pre-commit hook`](https://pre-commit.com/) for automatic adherence for the above checks with each commit. With this you can can run all the above tests with pre-commit run We also strive to maintain high test coverage, so most contributions should include additions to the existing unit tests. These tests are run with [`pytest`](https://docs.pytest.org/en/latest/), which you can use to locally run any test modules that you've added or changed. For example, if you've fixed a bug in `asgardpy/a/b.py`, you can run the tests specific to that module with pytest -v -m "test_data or not test_data" tests/a/b_test.py To check the code coverage locally in this example, you could run pytest -v -m "test_data or not test_data" --cov asgardpy.a.b tests/a/b_test.py We mainly use the tool [`tox`](https://tox.wiki/en/latest/) to run the above code formatting checks and unit tests. The tool uses various environments to perform its checks, which can be checked by tox --listenvs For running unit tests one can use the standard environment tox -e test-std or for running the tests in parallel tox -e test-quick For quick checks on unit tests specific to a sub-package, one can always use the direct commands for pytest mentioned above. If your contribution involves additions to any public part of the API, we require that you write docstrings for each function, method, class, or module that you add. See the [Writing docstrings](#writing-docstrings) section below for details on the syntax. You should test to make sure the API documentation can build without errors by running make docs If the build fails, it's most likely due to small formatting issues. If the error message isn't clear, feel free to comment on this in your pull request. And finally, add a News Fragment in `docs/changes/` as per the `README` in there, based on your contribution. After all of the above checks have passed, you can now open [a new GitHub pull request](https://github.com/chaimain/asgardpy/pulls). Make sure you have a clear description of the problem and the solution, and include a link to relevant issues. We look forward to reviewing your PR!
### Writing docstrings We use [Sphinx](https://www.sphinx-doc.org/en/master/index.html) to build our API docs, which automatically parses all docstrings of public classes and methods using the [autodoc](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html) extension. Please refer to autodoc's documentation to learn about the docstring syntax.