rschmitt commented on PR #612:
URL: https://github.com/apache/creadur-rat/pull/612#issuecomment-3786235499
`ReportOptionTest.testOptionsUpdateConfig` is specifically what's failing,
due to:
```
org.opentest4j.AssertionFailedError: includes-file test failed
at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:47)
at org.junit.jupiter.api.Assertions.fail(Assertions.java:157)
at
org.apache.rat.anttasks.ReportOptionTest.testOptionsUpdateConfig(ReportOptionTest.java:99)
Caused by: Basedir /tmp/junit-707654376384492708 does not exist
```
I don't know what's going on here, but one thing you can try is disabling
temp dir cleanup:
```java
@TempDir(cleanup = CleanupMode.NEVER)
```
You can also set this globally by setting the
`junit.jupiter.tempdir.cleanup.mode.default` system property to `NEVER`. In the
past I've found that this can fix non-deterministic issues with temp dir
cleanup. (It also makes local troubleshooting easier.)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]