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

Only compile integration tests once #971

Merged

Commits on May 4, 2022

  1. Configuration menu
    Copy the full SHA
    35b7f8e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ced5e0d View commit details
    Browse the repository at this point in the history
  3. Only compile integration tests once

    And use a different command than 'test' to run the native flavors of the
    ITs, like
    ```text
    $ ./mill -i integration.test.native
    $ ./mill -i integration.test.nativeStatic
    $ ./mill -i integration.test.nativeMostlyStatic
    ```
    
    The JVM ITs can be run in a few equivalent ways:
    ```text
    $ ./mill -i integration.test
    $ ./mill -i integration.test.test
    $ ./mill -i integration.test.jvm
    ```
    
    Note that `./mill __.test` will only run JVM ITs, not native ones.
    alexarchambault committed May 4, 2022
    Configuration menu
    Copy the full SHA
    e114105 View commit details
    Browse the repository at this point in the history