Skip to content
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

Introduce skipNativeTests flag in Maven plugin #193

Merged

Commits on Jan 22, 2022

  1. Introduce skipNativeTests flag in Maven plugin

    Prior to this commit, the NativeTestMojo had a `skipTests` property.
    This meant that you could skip the tests, but that skipped the JVM
    tests as well as the native tests, since Maven Surefire looks for the
    same `skipTests` flag. In other words, there was previously no way to
    execute the JVM tests and skip only the native tests.
    
    This commit addresses this issue by introducing a new `skipNativeTests`
    flag that allows the user to explicitly disable only native testing
    support.
    
    For example, this new feature enables workflows that need to execute
    tests on the JVM using the agent in order to generate native
    configuration files without having to execute the tests within a native
    image. See the updated reference documentation for additional use cases.
    
    Closes graalvm#179
    sbrannen committed Jan 22, 2022
    Configuration menu
    Copy the full SHA
    4660a00 View commit details
    Browse the repository at this point in the history