(dbs, reason=None)
| 458 | |
| 459 | |
| 460 | def only_on(dbs, reason=None): |
| 461 | return only_if( |
| 462 | OrPredicate( |
| 463 | [Predicate.as_predicate(db, reason) for db in util.to_list(dbs)] |
| 464 | ) |
| 465 | ) |
| 466 | |
| 467 | |
| 468 | def exclude(db, op, spec, reason=None): |
no test coverage detected