File: contributing.rst

package info (click to toggle)
python-pylxd 2.2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 820 kB
  • sloc: python: 7,258; sh: 104; makefile: 21
file content (138 lines) | stat: -rw-r--r-- 5,545 bytes parent folder | download
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
============
Contributing
============

pyLXD development is done on `Github`_. Pull Requests and Issues should be
filed there. We try and respond to PRs and Issues within a few days.

If you would like to contribute major features or have big ideas, it's best to
post at the `Linux Containers disucssion forum
<https://discuss.linuxcontainers.org/>`_ to discuss your ideas before
submitting PRs.  If you use ``[pylxd]`` in the title, it'll make it clearer.

Adding a Feature or Fixing a Bug
--------------------------------

The main steps are:

1. There needs to be a bug filed on the `Github`_ repository.  This is also for
   a feature, so it's clear what is being proposed prior to somebody starting
   work on it.
2. The pyLXD repository must be forked on Github to the developer's own
   account.
3. The developer should create a personal branch, with either:

   * feature/name-of-feature
   * bug/number/descriptive-name-of-bug

   This can be done with ``git checkout -b feature/name-of-feature`` from the
   master branch.
4. Work on that branch, push to the personal GitHub repository and then create
   a Pull Request.  It's a good idea to create the Pull Request early,
   particularly for features, so that it can be discussed and help sought (if
   needed).
5. When the Pull Request is ready it will then be merged.
6. At regular intervals the pyLXD module will be released to PyPi with the new
   features and bug fixes.

Requirements to merge a Pull Request (PR)
-----------------------------------------

In order for a Pull Request to be merged the following criteria needs to be
met:

1. All of the commits in the PR need to be `signed off using the '-s' option
   with git commit <https://git-scm.com/docs/git-commit>`_.  This is a
   requirement for all projects in the `Github Linux Containers projects space
   <https://github.com/lxc>`_.
2. Unit tests are required for the changes.  These are in the ``pylxd/tests``
   directory and follow the same directory structure as the module.
3. The unit test code coverage for the project shouldn't drop.  This means that
   any lines that aren't testable (for good reasons) need to be explicitly
   excluded from the coverage using ``# NOQA`` comments.
4. If the feature/bug fix requires integration test changes, then they should
   be added to the ``integration`` directory.
5. If the feature/bug fix changes the API then the documentation in the
   ``doc/source`` directory should also be updated.
6. If the contributor is new to the project, then they should add their
   name/details to the ``CONTRIBUTORS.rst`` file in the root of the repository
   as part of the PR.

Once these requirements are met, the change will be merged to the repository.
At this point, the contributor should then delete their private branch.

Code standards
--------------

pyLXD follows `PEP 8`_ as closely as practical. To check your compliance, use
the `pep8` tox target::

    tox -e pep8

.. note:: if this fails then the code will not be merged.  If there is a good
          reason for a PEP8 non-conformance, then a ``# NOQA`` comment should be
          added to the relevant line(s).

Testing
-------

Testing pyLXD is in 3 parts:

1. Conformance with `PEP 8`_, using the ``tox -e pep8`` command.
2. Unit tests using ``tox -e py27`` and ``tox -e py3``.
3. Integration tests using the ``run_integration_tests`` script in the root of
   the repository.

.. note:: all of the tests can be run by just using the ``tox`` command on it's
          own, with the exception of the integration tests.  These are not
          automatically run as they require a working LXD environment.

All of the commands use the `Tox`_ automation project to run tests in a
sandboxed environment.  On Ubuntu this is installed using::

    sudo apt install python-tox

Unit Testing
^^^^^^^^^^^^

pyLXD tries to follow best practices when it comes to testing. PRs are gated
by `Travis CI <https://travis-ci.org/lxc/pylxd>`_ and
`CodeCov <https://codecov.io/gh/lxc/pylxd>`_. It's best to submit tests
with new changes, as your patch is unlikely to be accepted without them.

To run the tests, you should use `Tox`_::

    tox

Integration Testing
^^^^^^^^^^^^^^^^^^^

Integration testing requires a running LXD system.  At present this is not
performed by the CI system, although this is intended at some point in the
future.  Integration testing *should* be performed prior to merging a PR.

Currently, there are two variants of the script to run integration tests:

1. ``run_integration_tests-16-04``
2. ``run_integration_tests-18-04``

The default is ``run_integration_tests-18-04``, which is symlinked to
``run_integration_tests``. This is because the default is to test on Ubuntu
Bionic, with Ubuntu Xenial (16.04) for maintenance purposes.

.. note:: A script to automate running the integration tests needs to be added.

Some hints on how to run the integration tests:

1. On Ubuntu it's probably easiest to use the `Multipass`_ snap.
2. Launch an LTS instance using ``multipass launch -n foo``
3. Shell into the instance: ``multipass exec foo -- bash``
4. Install tox and python2.7: ``sudo apt install python-tox python-2.7``
5. Clone the branch from the PR (or otherwise copy the repo into the machine)
6. Configure LXD using ``lxd init`` -- follow the prompts provided.
7. Run the integration tests.

.. _Github: https://github.com/lxc/pylxd
.. _PEP 8: https://www.python.org/dev/peps/pep-0008/
.. _Tox: https://tox.readthedocs.io/en/latest/
.. _Multipass: https://github.com/CanonicalLtd/multipass