Julien Greffe
Julien Greffe
Hello, when I declare a suite with this, classes are randomly executed: ``` @RunWith(WildcardPatternSuite.class) @Suite.SuiteClasses({FirstTest.class, AnotherTest.class}) @SuiteClasses("?*/**/*Test.class") ``` Maybe using LinkedHashSet would resolve this?
For WildcardPatternSuite: - replace `HashSet` with `LinkedHashSet` to keep ordering of declarations - additional parameter `treeTraversalStrategy` in `@SuiteClasses` to choose `DEPTH_FIRST` (default) or `BREADTH_FIRST` tree traversal
### Which package(s) are affected? Lit Core (lit / lit-html / lit-element / reactive-element) ### Description With Firefox, using two divs, one displayed and the other one hidden through components,...
### What is affected? Component ### Description When using CSS `max-width: 50%` on a `md-menu`, the inner `div.items` inherits the `max-width` and applies it itself, which leads to wrong display....
https://issues.jenkins.io/browse/JENKINS-70329 Check if the resolved `the.hpl` from `/Users/xxx/.jenkins-hpl-map` are contained within the current maven root project. If not, logs a WARN instead of an INFO. - [x] Make sure you...
### What is affected? Component ### Description When using `md-menu` within an overflow:hidden div, the surface positioning acts weird. ### Reproduction Simple JSFiddle to reproduce the issue: https://jsfiddle.net/jgreffe/Lkyt6gjv/ ### Workaround...
### Before Submitting Your Feature Request - [X] Check that there isn't already a similar feature request to avoid creating a duplicate. - [X] I have seen the [FAQ](https://github.com/p0deje/Maccy?tab=readme-ov-file#faq). ###...
Allow the `executorService` to be augmented. This avoids having to use reflection by dependent plugins. See https://github.com/jenkinsci/opentelemetry-plugin/pull/1139 for the consumer. Updated with [comment](https://github.com/jenkinsci/workflow-step-api-plugin/pull/226#issuecomment-3024992806) from @dwnusbaum > > `opentelemetry` wants to...
Code refactoring to avoid using reflection against `workflow-step-api-plugin` Uses the new API provided by https://github.com/jenkinsci/workflow-step-api-plugin/pull/226 ### Testing done ### Submitter checklist - [x] Make sure you are opening from a...