Skip to content

Commit

Permalink
chore: hint when java tests are skipped (apache#5158)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisonkun authored Oct 5, 2024
1 parent 579425c commit 4755ebd
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ public void beforeAll(ExtensionContext context) {
+ "\nTest {} is running."
+ "\n--------------------------------------------------------------------------------",
testName);
} else {
log.warn(
"\n================================================================================"
+ "\nTest {} is skipped because OPENDAL_TEST is not set."
+ "\n--------------------------------------------------------------------------------",
context.getDisplayName());
}
}

Expand Down

0 comments on commit 4755ebd

Please sign in to comment.