Skip to content

Latest commit

 

History

History
158 lines (94 loc) · 6.79 KB

CONTRIBUTING.rst

File metadata and controls

158 lines (94 loc) · 6.79 KB

Get in Touch!

You have found a bug in pandahub or have a suggestion for a new functionality? Then get in touch with us by opening up an issue on the pandahub issue board to discuss possible new developments with the community and the maintainers.

Setup your git repository

Note: The following setup is just a suggestion of how to setup your repository and is suphosed to make contributing easier, especially for newcomers. If you have a different setup that you are more comfortable with, you do not have to adopt this setup.

If you want to contribute for the first time, you can set up your environment like this:

  1. If you have not done it yet: install git and create a github account

  2. Create a fork of the official pandahub repository by clicking on "Fork" in the official pandahub repository (see https://help.github.com/articles/fork-a-repo/)

  3. Clone the forked repository to your local machine:

    git clone https://github.com/YOUR-USERNAME/pandahub.git
    
  4. Copy the following configuration at the bottom of to the pandahub/.git/config file (the .git folder is hidden, so you might have to enable showing hidden folders) and insert your github username:

    [remote "origin"]
        url = https://github.com/e2nIEE/pandahub.git
        fetch = +refs/heads/*:refs/remotes/ph/*
        pushurl = https://github.com/YOUR-USERNAME/pandahub.git
    [remote "ph"]
        url = https://github.com/e2nIEE/pandahub.git
        fetch = +refs/heads/*:refs/remotes/ph/*
    [remote "ph_fork"]
        url = https://github.com/YOUR-USERNAME/pandahub.git
        fetch = +refs/heads/*:refs/remotes/ph_fork/*
    [branch "develop"]
        remote = origin
        merge = refs/heads/develop
    

The develop branch is now configured to automatically track the official pandahub develop branch. So if you are on the develop branch and use:

git pull

your local repository will be updated with the newest changes in the official pandahub repository.

Since you cannot push directly to the official pandahub repository, if you are on develop and do:

git push

your push is by default routed to your own fork instead of the official pandahub repository with the setting as defined above.

If this is to implicit for you, you can always explicitely use the remotes "ph" and "ph_fork" to push and pull from the different repositories:

git pull ph develop
git push ph_fork develop

Contribute

All contributions to the pandahub repository are made through pull requests to the develop branch. You can either submit a pull request from the develop branch of your fork or create a special feature branch that you keep the changes on. A feature branch is the way to go if you have multiple issues that you are working on in parallel and want to submit with seperate pull requests. If you only have small, one-time changes to submit, you can also use the develop branch to submit your pull request.

Note: The following guide assumes the remotes are set up as described above. If you have a different setup, you will have to adapt the commands accordingly.

Contribute from your develop branch

  1. Check out the develop branch on your local machine:

    git checkout develop
    
  2. Update your local copy to the most recent version of the pandpower develop branch:

    git pull
    
  3. Make changes in the code

  4. Add and commit your changes:

    git add --all
    git commit -m"commit message"
    

    If there is an open issue that the commit belongs to, reference the issue in the commit message, for example for issue 3:

    git commit -m"commit message #3"
    
  5. Push your changes to your fork:

    git push
    
  6. Put in a Pull request to the main repository: https://help.github.com/articles/creating-a-pull-request-from-a-fork/

  7. If you want to amend the pull request (for example because tests are failing in Travis, or because the community/maintainers have asked for modifications), simply push more commits to the branch:

    git add --all
    git commit -m"I have updated the pull request after discussions #3"
    git push
    

    The pull request will be automatically updated.

Contribute from a feature branch

  1. Check out the develop branch on your local machine:

    git checkout develop
    
  2. Update your local copy to the most recent version of the pandahub develop branch:

    git pull
    
  3. Create a new feature branch:

    git checkout -b my_branch
    
  4. Make changes in the code

  5. Add and commit your change:

    git add --all
    git commit -m"commit message"
    

    If there is an open issue that the commit belongs to, reference the issue in the commit message, for example for issue 3:

    git commit -m"commit message #3"
    
  6. Push your changes to your fork:

    git push -u ph_fork my_branch
    

    this pushes the new branch to your fork and also sets up the remote tracking.

  7. Put in a Pull request to the official repository (see https://help.github.com/articles/creating-a-pull-request-from-a-fork/)

  8. If you want to amend the pull request (for example because tests are failing in Travis, or because the community/maintainers have asked for modifications), simply push more commits to the branch. Since the remote tracking branch has been set up, this is as easy as:

    git add --all
    git commit -m"I have updated the pull request after discussions #3"
    git push
    
  9. If the pull request was merged and you don't expect further development on this feature, you can delete the feature branch to keep your repository clean.

Test Suite

pandahub uses pytest for automatic software testing.

Making sure you don't break anything

If you make changes to pandahub that you plan to submit, first make sure that all tests are still passing. You can do this locally with:

import pandahub.test
pandahub.test.run_all_tests()

When you submit a pull request, Travis CI will run the same tests with Python versions 2.7, 3.4, 3.5 and 3.6. In most cases, if tests pass for you locally, they will also pass on Travis. But it can also haphen that the tests pass for you locally, but still fail on Travis, because the new code is not compatible with all Python versions. In this case you will have to update your pull request until the tests pass in all Python versions. Pull requests that lead to failing tests will not be accepted.

Adding Tests for new functionality

If you have added new functionality, you should also add a new function that tests this functionality. pytest automatically detects all functions in the pandahub/test folder that start with 'test' and are located in a file that also starts with 'test' as relevant test cases.