Daniel Kraus
Daniel Kraus
@apfelbasti I just had a look at your repository: 1. The aggregator has a different version (0.0.4-SNAPSHOT) than the other modules (0.0.1-SNAPSHOT). I assume this is from the previously failed...
Idea: If the automatic merge fails, or if one knows it will fail in advance, having an option to supply a patch might be a less expensive alternative, compared to...
Current workaround: our CI pipeline has an option to skip the merge into `develop`, i.e., it optionally appends [`skipMergeDevBranch`](https://aleksandr-m.github.io/gitflow-maven-plugin/hotfix-finish-mojo.html#skipMergeDevBranch) to the arg line. So if `hotfix-finish` fails due to merge...
Regarding: >nipafx: 11, 17, 18 We currently "only" include 11 and 17: https://github.com/junit-pioneer/junit-pioneer/blob/main/.github/workflows/build.yml#L120 Adding 18, not just replacing 17, will increase build time as we include an additional element to...
I assume such an extension would also require some kind of "special" setup and/or `TestInstance.Lifecycle`, since one doesn't want the class under test to be reinstantiated during the parallel execution?
Yes, tests might pass on the class path, but fail on the module path.
@Bukama you are right, this should be done now. 🥳
Hey @bartsimp! We use [Jackson](https://search.maven.org/artifact/com.fasterxml.jackson.core/jackson-databind) as our [JSON parser](https://junit-pioneer.org/docs/json-argument-source/#json-parser-integration). Jackson creates an [`ArrayNode`](https://fasterxml.github.io/jackson-databind/javadoc/2.13/com/fasterxml/jackson/databind/node/ArrayNode.html) from `items`, which implements [`Iterable`](https://docs.oracle.com/en/java/javase/18/docs/api/java.base/java/lang/Iterable.html): ```java @ParameterizedTest @JsonSource(""" [ { "items": [ 1, 3 ] }, {...
@bartsimp I actually made a mistake, [my suggestion above](https://github.com/junit-pioneer/junit-pioneer/issues/654#issuecomment-1199799097) throws the following exception once you dig a little deeper: ```text java.lang.ClassCastException: class com.fasterxml.jackson.databind.node.IntNode cannot be cast to class java.lang.Integer ```...