Skip to content

Commit 76b13e2

Browse files
authoredJul 26, 2024··
Merge pull request #107 from vincentcasseau/main
KCore/CPlot: minor
2 parents bed8431 + b9e8bd0 commit 76b13e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Cassiopee/CPlot/apps/validCassiopee.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,6 @@ def runTests():
917917
if STOP == 1: STOP = 0; displayStatus(0); return
918918
displayStatus(0)
919919
THREAD=None
920-
if len(selection) == len(TESTS): notifyValidOK()
921920
writeSessionLog()
922921

923922
def runTestsInThread():
@@ -1724,7 +1723,7 @@ def purgeSessionLogs(n):
17241723
file.add_command(label='Load last session', command=loadSessionWithArgs)
17251724
file.add_command(label='Purge session', command=buildTestList)
17261725
file.add_command(label='Export to text file', command=export2Text)
1727-
file.add_command(label='Notify Ready for commit', command=notifyValidOK)
1726+
#file.add_command(label='Notify Ready for commit', command=notifyValidOK)
17281727
file.add_command(label='Quit', command=Quit, accelerator='Ctrl+Q')
17291728
view.add_command(label='Show FAILED', command=showFilter)
17301729
showFilterWithArgs = partial(showFilter, "FAILEDMEM")

‎Cassiopee/KCore/test/compareSessionLogs.py

+1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ def stringify(test='', ref='', new=''):
179179
compStr += failedTestsHeader
180180
for test in failedTests:
181181
compStr += stringify(test)
182+
baseState = 'FAILED'
182183
else: compStr += failedTestsHeader + "[none]\n"
183184

184185
execTime = []

0 commit comments

Comments
 (0)
Please sign in to comment.