File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ Change history for Coverage.py
5
5
Version 3.5.3b1
6
6
---------------
7
7
8
+ - Line numbers in the HTML report line up better with the source lines, fixing
9
+ `issue 197`, thanks Marius Gedminas.
10
+
8
11
- When specifying a directory as the source= option, the directory itself no
9
12
longer needs to have a ``__init__.py`` file, though its subdirectories do, to
10
13
be considered as source files.
@@ -34,6 +37,7 @@ Version 3.5.3b1
34
37
.. _issue 183: https://bitbucket.org/ned/coveragepy/issue/183/install-fails-for-python-23
35
38
.. _issue 194: https://bitbucket.org/ned/coveragepy/issue/194/filelocatorrelative_filename-could-mangle
36
39
.. _issue 195: https://bitbucket.org/ned/coveragepy/issue/195/pyo-file-handling-in-codeunit
40
+ .. _issue 197: https://bitbucket.org/ned/coveragepy/issue/197/line-numbers-in-html-report-do-not-align
37
41
.. _tox: http://tox.readthedocs.org/
38
42
39
43
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ html>body {
24
24
25
25
/* Set base font size to 12/16 */
26
26
p {
27
- font-size : .75em ; /* 12/16 */
28
- line-height : 1.3333 em ; /* 16/12 */
27
+ font-size : .75em ; /* 12/16 */
28
+ line-height : 1.33333333 em ; /* 16/12 */
29
29
}
30
30
31
31
table {
You can’t perform that action at this time.
0 commit comments