Skip to content

Commit

Permalink
pytest.skip doesn't do what we want.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunu committed Aug 11, 2015
1 parent f550a62 commit 7c4bcec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion splash/tests/test_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_invalid_wait(self):
'wait': wait})
self.assertStatusCode(r, 400)

@pytest.skip("resource_timeout doesn't work in Qt5. See issue #269 for details.")
@pytest.mark.skipif(True, reason="resource_timeout doesn't work in Qt5. See issue #269 for details.")
def test_resource_timeout(self):
resp = self.request({
'url': self.mockurl("show-image?n=10"),
Expand Down

0 comments on commit 7c4bcec

Please sign in to comment.