-
Hi there, I'm having some difficulty running Testcontainers in CircleCI if anyone can point me in the right direction. circleci config file here Executing the circleci job locally (macos) does not reproduce the error, it's only happening in the circleci env. cmd I use locally
All we need is to provide our java app with a temporary neo4j database to access when running unit tests. I would like to avoid running a temporary neo4j outside of the jvm since Testcontainers can provide an embedded db but I'm not having much luck with connecting the jvm to the embedded db while in circleci. However it does look like the container is starting up, at least initially
but then we reach this
and
Any thoughts or guidance is greatly appreciated 🙏 Other info:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Just for sake of documenting the current state of the investigations: The CircleCI config uses
Since it also uses the
|
Beta Was this translation helpful? Give feedback.
-
Resolved.
I had tried this variation before but without removing the use of orbs. Maybe that was part of the issue as well? Anyway, I appreciate that the solution was basically just removing a few lines from the config file. |
Beta Was this translation helpful? Give feedback.
Resolved.
I had tried this variation before but without removing the use of orbs. Maybe that was part of the issue as well? Anyway, I appreciate that the solution was basically just removing a few lines from the config file.