This is an automated email from the ASF dual-hosted git repository. adoroszlai pushed a commit to branch HDDS-9299 in repository https://gitbox.apache.org/repos/asf/ozone.git
commit 6083c93708e305ac08b32b7d8fa77b3be77e7b66 Author: Doroszlai, Attila <[email protected]> AuthorDate: Fri Oct 13 07:12:09 2023 +0200 Allow marking JUnit4 tests as slow --- .../main/java/org/apache/ozone/test/SlowTest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/hadoop-hdds/test-utils/src/main/java/org/apache/ozone/test/SlowTest.java b/hadoop-hdds/test-utils/src/main/java/org/apache/ozone/test/SlowTest.java new file mode 100644 index 0000000000..2dca4158a0 --- /dev/null +++ b/hadoop-hdds/test-utils/src/main/java/org/apache/ozone/test/SlowTest.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * <p> + * http://www.apache.org/licenses/LICENSE-2.0 + * <p> + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.ozone.test; + +/** + * Interface to mark test classes or methods that take too much time. + * These are excluded from CI runs for each commit and run periodically. + */ +public interface SlowTest { + // category marker +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
