Update default reason to "unconditional skip"

This commit is contained in:
Michael Aquilina 2015-10-03 17:02:18 +01:00
parent 00d0c74657
commit df874db817
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ def pytest_runtest_setup(item):
elif skip_info.args:
pytest.skip(skip_info.args[0])
else:
pytest.skip()
pytest.skip("unconditional skip")
item._evalxfail = MarkEvaluator(item, 'xfail')
check_xfail_no_run(item)