Commit df9500ac authored by Jason R. Coombs's avatar Jason R. Coombs

Merged in toabctl/setuptools/fix-type-error-skip-reason (pull request #127)

Fix TypeError for pytest.skip()
parents a0cd32ea 82d00362
......@@ -28,7 +28,7 @@ def setup_module(module):
try:
urlopen('https://pypi.python.org/pypi')
except Exception as exc:
pytest.skip(reason=str(exc))
pytest.skip(str(exc))
@pytest.fixture
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment