blob: 41ab15b9b2b3343e94dacc6365f83eb75dd6a1c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package de.test.antennapod;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Tests with this annotation are ignored on CI. This could be reasonable
* if the performance of the CI server is not enough to provide a reliable result.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface IgnoreOnCi {
}
|