cfme.markers.skipper module

skipper: Autmatically skip tests with certain marks as defined in this module

This doesn’t provide any special markers, but it does add behavor to marks defined in skip_marks.

cfme.markers.skipper.pytest_addoption(parser)[source]
cfme.markers.skipper.pytest_collection_modifyitems(items)[source]
cfme.markers.skipper.pytest_configure(config)[source]
cfme.markers.skipper.skip_marks = [('long_running', '--long-running'), ('perf', '--perf')]

List of (mark, commandline flag) tuples. When the given mark is used on a test, it will be skipped unless the commandline flag is used. If the mark is already found in py.test’s parsed mark expression, no changes will be made for that mark.