Remove skip marker as it's builtin in pytest now

This commit is contained in:
Florian Bruhin 2016-03-02 07:14:06 +01:00
parent 1169d5ac52
commit d1ec64cab1

View File

@ -54,7 +54,6 @@ def _apply_platform_markers(item):
"Can't be run when frozen"), "Can't be run when frozen"),
('frozen', not getattr(sys, 'frozen', False), ('frozen', not getattr(sys, 'frozen', False),
"Can only run when frozen"), "Can only run when frozen"),
('skip', True, "Always skipped."),
('pyqt531_or_newer', PYQT_VERSION < 0x050301, ('pyqt531_or_newer', PYQT_VERSION < 0x050301,
"Needs PyQt 5.3.1 or newer"), "Needs PyQt 5.3.1 or newer"),
('ci', 'CI' not in os.environ, "Only runs on CI."), ('ci', 'CI' not in os.environ, "Only runs on CI."),