Skip to content

reserved pipeline takes ~10 minutes because it runs all tests instead of only reserved-tagged ones #886

Description

@volodya-lombrozo

I cannot get fast feedback from the `reserved` CI pipeline — it takes around 10 minutes to complete.

The root cause is that `mvn clean install -Preserved` runs the full test suite. The `reserved` profile exists solely to verify tests tagged with `@Tag("reserved")`, but currently its Surefire config only excludes `benchmark`-tagged tests:

```xml

benchmark
...

```

This means all ~500+ other tests run too, even though they are already covered by the default pipeline.

Proposed Solution
Change the Surefire configuration in the `reserved` profile in `pom.xml` to include only `reserved`-tagged tests:

```xml

reserved
...

```

This would cut the pipeline time significantly — only the handful of `reserved`-tagged tests would run instead of the entire suite.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions