This message was deleted.
# community-support
s
This message was deleted.
a
Have you configured the JVM suites with
useJUnitPlatform()
? Example
p
I have indeed. In trying to narrow down the issue, it doesn’t seem related to test-suites at all. If I move the functional test classes into
src/test/java
, and add the TestContainer dependencies to
testImplementation()
, I actually see the same exact result as I did in the
functionalTest
sourceset. Simply by adding the dependencies + one test file that uses a TestContainer and none of the previously working unit tests are called - the report just shows 0 tests/failures/ignored. Really odd . Based on that, I should be able to put together a simple reproduction project to share and get more ideas (and figure out where to file an issue). Will update this thread when that happens.
d
i keep an integration test example lying around for reference, ive just updated it and added a postgres example - https://github.com/alexanderankin/how-to-itest/commit/a27fa9ce59f4a73ff45d8dbf8e81b0806b8bef88
p
Thank you, that’s very helpful as a sanity check!