Merge pull request #2 from bubenkoff/py25-test_skipping_faild
fixes for py25 in test_skipping
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -29,4 +29,5 @@ env/
|
||||
.cache
|
||||
.coverage
|
||||
.ropeproject
|
||||
.idea
|
||||
|
||||
|
||||
@@ -108,8 +108,7 @@ class TestEvaluator:
|
||||
pass
|
||||
""")
|
||||
ev = MarkEvaluator(item, 'skipif')
|
||||
with pytest.raises(pytest.fail.Exception) as exc:
|
||||
assert ev.istrue()
|
||||
exc = pytest.raises(pytest.fail.Exception, "ev.istrue()")
|
||||
assert """Failed: you need to specify reason=STRING when using booleans as conditions.""" in exc.value.msg
|
||||
|
||||
def test_skipif_class(self, testdir):
|
||||
|
||||
Reference in New Issue
Block a user