-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some Native tests don't run due to failsafe <skip>true</skip> #43997
Comments
Having a look at this one. |
The plugin shouldn't be defined and disabled, it will be automatically enabled by the profile. Fixes quarkusio#43997
I fixed the AWT case here: #44139 . Not sure if there are other cases though as for instance in the Redis case If you have specific examples that look suspicious to you, please point them to me and I'll have a look. In the meantime, AWT testing should be fine after the PR. Sorry for the oversight! |
The plugin shouldn't be defined and disabled, it will be automatically enabled by the profile. Fixes quarkusio#43997 (cherry picked from commit a349b01)
The plugin shouldn't be defined and disabled, it will be automatically enabled by the profile. Fixes quarkusio#43997 (cherry picked from commit a349b01)
The plugin shouldn't be defined and disabled, it will be automatically enabled by the profile. Fixes quarkusio#43997 (cherry picked from commit a349b01)
The plugin shouldn't be defined and disabled, it will be automatically enabled by the profile. Fixes quarkusio#43997
Description
While reviewing #43829 I noticed the GHA has been giving us false negative, not running
awt
integration test.When I tried locally, I wasn't able to make maven run the awt testsuite with native-image either. The harness runs HotSpot tests, then it builds the native-image but it doesn't run any tests with it.
I did try to fiddle with various maven flags like
-DskipITs=false
to no avail.Trying to run the test in container had a similar result, the harness executed HotSpot tests, it went on to build the native executable using builder-image, then it built a runtime container image and copied the executable in it, then it started the runtime container and terminated there, not executing any actual tests.
I had to manually patch the pom.xml to make it run the testsuite properly:
It seems that this is the change that has brought the
skip>true</skip>
in: 9f3ba1922d2Question
Thx
K.
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: