Trouble running integration tests - help? #3828
-
Hi! Being a now-and-then Java coder, I'm having some trouble trying to run the integration tests. I'm trying to run the smoke integration tests as described in https://github.com/Apicurio/apicurio-registry/blob/main/TESTING.md#integration-tests, as follows:
The latter however fails with:
This is on Linux, with:
What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @forsberg, sorry, this is happening due to bad instructions on our side. That is likely happening because you have two flavours of the applications in your |
Beta Was this translation helpful? Give feedback.
Hey @forsberg, sorry, this is happening due to bad instructions on our side. That is likely happening because you have two flavours of the applications in your
integration-tests
classpath. I recommend running the tests with../mvnw clean verify -Plocal-mem -Psmoke
letting maven to pick which one of the flavours of the application should be used (in the case of this command, the in-memory version of the application). We're working on both improving the instructions on how to run the tests and also on making it actually simpler.