-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Fix test-other-modules failure due to lack of Redshift secrets #16484
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -173,6 +173,30 @@ | |||
</dependencies> | ||||
|
||||
<profiles> | ||||
<profile> | ||||
<id>default</id> | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The other option would be to add in
after trino/.github/workflows/ci.yml Line 447 in 11942a4
I'm inclined however to use rather the current option because it gives us extra test-coverage for non cloud-tests that are executed this way on |
||||
<activation> | ||||
<activeByDefault>true</activeByDefault> | ||||
</activation> | ||||
<build> | ||||
<plugins> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-surefire-plugin</artifactId> | ||||
<configuration> | ||||
<excludes> | ||||
<exclude>**/TestRedshiftAutomaticJoinPushdown.java</exclude> | ||||
<exclude>**/TestRedshiftConnectorTest.java</exclude> | ||||
<exclude>**/TestRedshiftConnectorSmokeTest.java</exclude> | ||||
<exclude>**/TestRedshiftTableStatisticsReader.java</exclude> | ||||
<exclude>**/TestRedshiftTypeMapping.java</exclude> | ||||
</excludes> | ||||
</configuration> | ||||
</plugin> | ||||
</plugins> | ||||
</build> | ||||
</profile> | ||||
|
||||
<profile> | ||||
<id>cloud-tests</id> | ||||
<activation> | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will fail.
we should have only
{ modules: plugin/trino-redshift, profile: cloud-tests }
let's add some comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works as the screenshot is showing: