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

Add a log message to inform deprecation of critical checks #65

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/java/hudson/plugins/robot/RobotPublisher.java
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ public void perform(Run<?, ?> build, @Nonnull FilePath workspace, @Nonnull EnvVa
if (build.getResult() != Result.ABORTED) {
PrintStream logger = listener.getLogger();
logger.println(Messages.robot_publisher_started());
logger.println(Messages.robot_publisher_only_critical());
logger.println(Messages.robot_publisher_parsing());
RobotResult result;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ robot.publisher.finished=Done publishing Robot results.
robot.publisher.done= Done!
robot.publisher.fail= Failed!

robot.publisher.only_critical=INFO: Checking test criticality is deprecated and will be dropped in a future release!
robot.publisher.file_not_found=WARNING! Could not find file:

robot.config.percentvalidation=Entry must be percentage value between 0-100
Expand Down
Loading