You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+8-1
Original file line number
Diff line number
Diff line change
@@ -47,12 +47,19 @@ Below are some examples on how to include coverage tracking during your tests. C
47
47
48
48
You may need to configure a ``.coveragerc`` file. Learn more `here <http://coverage.readthedocs.org/en/latest/config.html>`_. Start with this `generic .coveragerc <https://gist.github.com/codecov-io/bf15bde2c7db1a011b6e>`_ for example.
49
49
50
-
We highly suggest adding `source` to your ``.coveragerc`` which solves a number of issues collecting coverage.
50
+
We highly suggest adding `source` to your ``.coveragerc``, which solves a number of issues collecting coverage.
51
51
52
52
.. code-block:: ini
53
53
54
54
[run]
55
55
source=your_package_name
56
+
57
+
If there are multiple sources, you instead should add 'include' to your ``.coveragerc``
0 commit comments