-
Improvement
-
Resolution: Fixed
-
Blocker
-
None
-
-
1119.va_a_5e9068da_d7
The JUnit Result Archiver will fail the build if the test result files that match the filemask do not have a very recent modification time. The error message it prints is this:
"Test reports were found but none of them are new. Did tests run?"
This can be inconvenient in several settings; notably, when the clocks on the master and slave fall out of sync, or when the test results were generated by some process that isn't part of the build itself – maybe they were scp'd from somewhere else, for instance. Or for testing the JUnitResultArchiver itself.
In my opinion, the behavior should be changed such that check-for-recent-modifications should be off by default. Additionally, the user should be able to specify a "recent" threshold via a setting.
- duplicates
-
JENKINS-5393 Jenkins falsely fails builds due to aggressive up-to-date check on junit artifacts
-
- Open
-
- is duplicated by
-
JENKINS-18148 JUnit Test Result Report Silently Ignores Files With Old Timestamps?
-
- Resolved
-
- is related to
-
JENKINS-9438 Gradle CI builds fail when no test tasks are run
-
- Closed
-
-
JENKINS-47315 No new tests found should be treated as empty results
-
- In Progress
-
- links to
Hi,
@slawek Chaining the timestamp with touch is a workaround not a solution.
In my opinion the best solution is to make this check configurable with 2 parameters, one configuration parameter to indicate if enable or disable and the second one if enable to indicate the maximal allowed timestamp difference.
Mariano.-