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
As of v0.4.3 (which is essentially this commit), replay results are not properly persisted as they miss the suffix dot (e.g. replayresult instead of replay.result).
Maybe caused by this TODO from RecheckImpl (closed source):
publicFilegetResultFile() {
returnfileNamerStrategy.createFileNamer( execSuiteName )
// TODO Remove after next release of recheck
.getResultFile( ReportFileUtils.REPORT_FILE_EXTENSION.substring( 1 ) );
}
The text was updated successfully, but these errors were encountered:
This is the wrong order ... closed source retest depends on recheck. So as soon as the parent-pom is switched, and we it depends on recheck 0.4.3 (which it doesn't as of now), this bug is activated. Since Enes did this all locally, he triggered that bug. Good catch, though.
As of
v0.4.3
(which is essentially this commit), replay results are not properly persisted as they miss the suffix dot (e.g.replayresult
instead ofreplay.result
).Maybe caused by this
TODO
fromRecheckImpl
(closed source):The text was updated successfully, but these errors were encountered: