(item)
| 280 | |
| 281 | |
| 282 | def skip_system_test(item): |
| 283 | for marker in item.iter_markers(name="system"): |
| 284 | pytest.skip( |
| 285 | "The test is skipped because it has system marker. " |
| 286 | "System tests are only run when --system flag " |
| 287 | "with the right system ({system}) is passed to pytest. {item}".format( |
| 288 | system=marker.args[0], item=item |
| 289 | ) |
| 290 | ) |
| 291 | |
| 292 | |
| 293 | def skip_long_running_test(item): |
no test coverage detected