()
| 98 | } |
| 99 | |
| 100 | func k8sParserOpts() policy.ParserOption { |
| 101 | return func(p *policy.Parser) (*policy.Parser, error) { |
| 102 | p.TagVisitor = policy.K8sTestTagHandler() |
| 103 | return p, nil |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | // TestTriggerTestsWithRunnerOptions tests the TriggerTestsFromCompiler function for a custom policy |
| 108 | // by providing test runner and compiler options without setting the flag variables. |
no test coverage detected