diqiu50 commented on code in PR #11073:
URL: https://github.com/apache/gravitino/pull/11073#discussion_r3287109830
##########
catalogs/catalog-glue/src/test/java/org/apache/gravitino/catalog/glue/integration/test/AwsGlueCatalogIT.java:
##########
@@ -62,15 +62,13 @@ class AwsGlueCatalogIT extends AbstractGlueCatalogIT {
@BeforeAll
void checkAwsEnvironment() {
- Assumptions.assumeTrue(
- System.getenv("AWS_SECRET_ACCESS_KEY") != null,
- "Skipped: AWS_SECRET_ACCESS_KEY is not set");
+ Preconditions.checkState(
+ System.getenv("AWS_SECRET_ACCESS_KEY") != null, "AWS_SECRET_ACCESS_KEY
must be set");
+ Preconditions.checkState(
+ System.getenv("AWS_S3_TEST_BUCKET") != null, "AWS_S3_TEST_BUCKET must
be set");
Review Comment:
No a problem
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]