1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
############
Contributing
############
Contributions to the instrument repository and the main code base are highly encouraged. This section outlines the basic work-flow for new contributors.
Using the development version
=============================
New features are added to the development version of PyMeasure, hosted on `GitHub`_. We use `Git version control`_ to track and manage changes to the source code. On Windows, we recommend using `GitHub Desktop`_. Make sure you have an appropriate version of Git (or GitHub Desktop) installed and that you have a GitHub account.
.. _GitHub: https://github.com/
.. _Git version control: https://git-scm.com/
.. _GitHub Desktop: https://git-scm.com/downloads
In order to add your feature, you need to first `fork`_ PyMeasure. This will create a copy of the repository under your GitHub account.
.. _fork: https://help.github.com/articles/fork-a-repo/
The instructions below assume that you have set up Anaconda, as described in the :doc:`Quick Start guide <../quick_start>` and describe the terminal commands necessary. If you are using GitHub Desktop, take a look through `their documentation`_ to understand the corresponding steps.
.. _their documentation: https://help.github.com/desktop/
Clone your fork of PyMeasure :code:`your-github-username/pymeasure`. In the following terminal commands replace your desired path and GitHub username.
.. code-block:: bash
cd /path/for/code
git clone https://github.com/your-github-username/pymeasure.git
If you had already installed PyMeasure using :code:`pip`, make sure to uninstall it before continuing.
.. code-block:: bash
pip uninstall pymeasure
Install PyMeasure in the editable mode.
.. code-block:: bash
cd /path/for/code/pymeasure
pip install -e .
This will allow you to edit the files of PyMeasure and see the changes reflected. Make sure to reset your notebook kernel or Python console when doing so. Now you have your own copy of the development version of PyMeasure installed!
Working on a new feature
========================
We use branches in Git to allow multiple features to be worked on simultaneously, without causing conflicts. The master branch contains the stable development version. Instead of working on the master branch, you will create your own branch off the master and merge it back into the master when you are finished.
Create a new branch for your feature before editing the code. For example, if you want to add the new instrument "Extreme 5000" you will make a new branch "dev/extreme-5000".
.. code-block:: bash
git branch dev/extreme-5000
You can also `make a new branch`_ on GitHub. If you do so, you will have to fetch these changes before the branch will show up on your local computer.
.. code-block:: bash
git fetch
.. _make a new branch: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/
Once you have created the branch, change your current branch to match the new one.
.. code-block:: bash
git checkout dev/extreme-5000
Now you are ready to write your new feature and make changes to the code. To ensure consistency, please follow the :doc:`coding standards for PyMeasure <coding_standards>`. Use :code:`git status` to check on the files that have been changed. As you go, commit your changes and push them to your fork.
.. code-block:: bash
git add file-that-changed.py
git commit -m "A short description about what changed"
git push
Making a pull request
=====================
While you are working, it is helpful to start a pull request (PR) targeting the :code:`master` branch of :code:`pymeasure/pymeasure`. This will allow you to discuss your feature with other contributors. We encourage you to start this pull request already after your first commit.
You may mark a pull request as a draft, if it is in an early state.
`Start a pull request`_ on the `PyMeasure GitHub page`_.
.. _`Start a pull request`: https://help.github.com/articles/using-pull-requests/
.. _PyMeasure GitHub page: https://github.com/pymeasure/pymeasure
There is some automation in place to run the unit tests and check some coding standards. Annotations in the "Files changed" tab indicate problems for you to correct (e.g. linting or docstring warnings).
Your pull-request will be reviewed by the PyMeasure maintainers. Frequently there is some iteration and discussion based on that feedback until a pull request can be merged. This will happen either in the conversation tab or in inline code comments.
Be aware that due to maintainer manpower limitations it might take a long time until PRs get reviewed and/or merged.
In general, review effort scales badly with PR size. Therefore, **smaller PRs are much preferred**. Try to limit your contribution to one "aspect", e.g. one instrument (or a few if closely related), one bug fix, or one feature contribution.
If you placed your contribution in a separate branch as suggested above, you can easily use your contribution in the meantime -- just check out your feature branch instead of `master`.
Unit testing
============
Unit tests are run each time a new commit is made to a branch. The purpose is to catch changes that break the current functionality, by testing each feature unit. PyMeasure relies on `pytest`_ to preform these tests, which are run on TravisCI and Appveyor for Linux/macOS and Windows respectively.
Running the unit tests while you develop is highly encouraged. This will ensure that you have a working contribution when you create a pull request.
.. code-block:: bash
pytest
If your feature can be tested, unit tests are required. This will ensure that your features keep working as new features are added.
.. _`pytest`: http://pytest.org/latest/
Now you are familiar with all the pieces of the PyMeasure development work-flow. We look forward to seeing your pull-request!
|