fix test skip and py3.6

This commit is contained in:
bcolsen
2017-08-08 23:30:02 -06:00
parent 4f96cdb3b0
commit 77d6de0ae5
2 changed files with 10 additions and 2 deletions

View File

@@ -183,6 +183,8 @@ def test_numpydoc_parameters_alternative_types():
assert 'numerator' in names
assert 'append' in names
@pytest.mark.skipif(numpydoc_unavailable,
reason='numpydoc module is unavailable')
def test_numpydoc_returns():
s = dedent('''
def foobar():
@@ -242,7 +244,9 @@ def test_numpydoc_returns_alternative_types():
assert 'capitalize' not in names
assert 'numerator' in names
assert 'append' in names
@pytest.mark.skipif(numpydoc_unavailable,
reason='numpydoc module is unavailable')
def test_numpydoc_returns_list_of():
s = dedent('''
def foobar():