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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ 4.0.1] - Unreleased
8+ ## [ 4.0.1] - 2024-08-09
99
1010### Fixed
11+ - #45 : Fixed Python line 0 tracking for 2024.2
1112- #46 : Fix for bug caused by UpdateComplexity calling GetCurrentByName unnecessarily and causing dependency issues
1213
1314## [ 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 ]
6868 class _name = frame .f _globals ['__name __']
6969 # extracts the line number
7070 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
7272 tGlob = iris .gref ('^IRIS .Temp .TestCoveragePY ') # python doesn 't have macros -- this is $$$PyMonitorResults
7373 # $$$PyMonitorResults(classname , linenumber ) = the number of times that linenumber in that class was covered
7474
You can’t perform that action at this time.
0 commit comments