In PR #665 I introduced an improvement of our test infrastructure by removing some hack.
There I added this log message to spot and highlight inconsistent ide-projects and tests:
|
this.context.error(e, "Invalid test project using version {} that cannot be resolved in urls folder", version); |
If you now run all our tests you will find lots of such exceptions spamming our logs.
We need to get rid of this since it is indicating inconsistent test projects.
In order to fix this all we need to do is create the according tool versions in urls of the according project.
The tool versions missing are reported in the exception message.
Examples how to fix this are included in PR #665 and can therefore be found in the diff (Files changed tab).
The job of this story is to complete this cleanup until all such errors are gone.
If that is the case, then please also remove the try catch block from the above linked code point so that in the future no further such inconsistencies can be created.
In PR #665 I introduced an improvement of our test infrastructure by removing some hack.
There I added this log message to spot and highlight inconsistent ide-projects and tests:
IDEasy/cli/src/test/java/com/devonfw/tools/ide/repo/ToolRepositoryMock.java
Line 39 in 51a16e1
If you now run all our tests you will find lots of such exceptions spamming our logs.
We need to get rid of this since it is indicating inconsistent test projects.
In order to fix this all we need to do is create the according tool versions in
urlsof the according project.The tool versions missing are reported in the exception message.
Examples how to fix this are included in PR #665 and can therefore be found in the diff (Files changed tab).
The job of this story is to complete this cleanup until all such errors are gone.
If that is the case, then please also remove the try catch block from the above linked code point so that in the future no further such inconsistencies can be created.