File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ 4.0.1] - Unreleased
8
+ ## [ 4.0.1] - 2024-08-09
9
9
10
10
### Fixed
11
+ - #45 : Fixed Python line 0 tracking for 2024.2
11
12
- #46 : Fix for bug caused by UpdateComplexity calling GetCurrentByName unnecessarily and causing dependency issues
12
13
13
14
## [ 4.0.0] - 2024-08-01
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ ClassMethod PyStartWithScope(pCoverageClasses As %List) [ Language = python ]
68
68
class _name = frame .f _globals ['__name __']
69
69
# extracts the line number
70
70
line _no = frame .f _lineno
71
- if class _name in tCoverageClasses and line _no != 1 : # if this is in a covered class
71
+ if class _name in tCoverageClasses and line _no > 1 : # if this is in a covered class
72
72
tGlob = iris .gref ('^IRIS .Temp .TestCoveragePY ') # python doesn 't have macros -- this is $$$PyMonitorResults
73
73
# $$$PyMonitorResults(classname , linenumber ) = the number of times that linenumber in that class was covered
74
74
You can’t perform that action at this time.
0 commit comments