File: CONTRIBUTING.rst

package info (click to toggle)
dictdiffer 0.9.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296 kB
  • sloc: python: 1,519; makefile: 153; sh: 6
file content (32 lines) | stat: -rw-r--r-- 936 bytes parent folder | download | duplicates (2)
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
Contributing
============

Bug reports, feature requests, and other contributions are welcome.
If you find a demonstrable problem that is caused by the code of this
library, please:

1. Search for `already reported problems
   <https://github.com/inveniosoftware/dictdiffer/issues>`_.
2. Check if the issue has been fixed or is still reproducible on the
   latest `master` branch.
3. Create an issue with **a test case**.

If you create a feature branch, you can run the tests to ensure everything is
operating correctly:

.. code-block:: console

    $ ./run-tests.sh

    ...

    Name                  Stmts   Miss  Cover   Missing
    ---------------------------------------------------
    dictdiffer/__init__      88      0   100%
    dictdiffer/version        2      0   100%
    ---------------------------------------------------
    TOTAL                    90      0   100%

    ...

    52 passed, 2 skipped in 0.44 seconds