Skip to content

Latest commit

 

History

History
123 lines (97 loc) · 5.15 KB

CONTRIBUTING_EN.md

File metadata and controls

123 lines (97 loc) · 5.15 KB

How to contribute to sidrapy

Thank you for considering contributing to sidrapy!

Support questions

Please, don't use the issue tracker for this. The issue tracker is a tool to address bugs and feature requests in sidrapy itself. Use our Telegram group for questions about using sidrapy or issues with your own code:

Reporting issues

Include the following information in your post:

  • Describe what you expected to happen.
  • If possible, include a minimal reproducible example to help us identify the issue. This also helps check that the issue is not with your own code.
  • Describe what actually happened. Include the full traceback if there was an exception.
  • List your Python and sidrapy. If possible, check if this issue is already fixed in the latest releases or the latest code in the repository.

Submitting patches

If there is not an open issue for what you want to submit, prefer opening one for discussion before working on a PR. You can work on any issue that doesn't have an open PR linked to it or a maintainer assigned to it. These show up in the sidebar. No need to ask if you can work on an issue that interests you.

Include the following in your patch:

  • Use Black to format your code. This and other tools will run automatically if you install pre-commit using the instructions below.
  • Include tests if your patch adds or changes code. Make sure the test fails without your patch.
  • Update any relevant docs pages and docstrings. Docs pages and docstrings should be wrapped at 72 characters.

First time setup

$ git config --global user.name 'your name'
$ git config --global user.email 'your email'
  • Make sure you have a GitHub account.

  • Fork sidrapy to your GitHub account by clicking the Fork button.

  • Clone the main repository locally.

$ git clone https://github.com/AlanTaranti/sidrapy
$ cd sidrapy
  • Add your fork as a remote to push your work to. Replace {username} with your username. This names the remote "fork", the default AlanTaranti remote is "origin".
$ git remote add fork https://github.com/{username}/sidrapy
  • Create a virtualenv.
$ python3 -m venv venv
$ . venv/bin/activate

On Windows, activating is different.

> env\Scripts\activate
  • Install sidrapy in editable mode with development dependencies.
$ pip install -e . -r requirements/development.txt
  • Optional: Install the pre-commit hooks.
$ pre-commit install

Start coding

  • Create a branch to identify the issue you would like to work on. If you're submitting a bug or documentation fix, branch off of the latest ".x" branch.
$ git fetch origin
$ git checkout -b your-branch-name origin/0.1.x
  • If you're submitting a feature addition or change, branch off of the "develop" branch.
$ git fetch origin
$ git checkout -b your-branch-name origin/develop
  • Using your favorite editor, make your changes, committing as you go.

  • Include tests that cover any code changes you make. Make sure the test fails without your patch. Run the tests as described below.

  • Push your commits to your fork on GitHub and create a pull request. Link to the issue being addressed with fixes #123 in the pull request.

$ git push --set-upstream fork your-branch-name

Running the tests

Run the basic test suite with pytest.

$ pytest

This runs the tests for the current environment, which is usually sufficient. CI will run the full suite when you submit your pull request.

You can run the full test suite with tox if you don't want to wait.

  • Install pyenv

  • Install the supported Python Versions:

$ PY_VERSIONS=`pyenv install -l | awk '{$1=$1};1' | egrep -v '(-|r|^2|^3\.[0-6]\.)' | tac | sort -u -t'.' -k2,2`
$ echo $PY_VERSIONS | xargs -n1 pyenv install
$ PY_VERSIONS=`pyenv versions | awk '{$1=$1};1' | egrep -v '(-|r|^2|^3\.[0-6]\.)'`
$ echo $PY_VERSIONS | xargs pyenv local
$ tox

Running test coverage

Generating a report of lines that do not have test coverage can indicate where to start contributing. Run pytest using coverage and generate a report.

$ coverage run -m pytest
$ coverage html

Open htmlcov/index.html in your browser to explore the report. Read more about coverage.