Skip to content

Commit

Permalink
Skip async function test on python3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Aug 20, 2024
1 parent aac14c2 commit ff618da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_bind_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ def inner_func():
assert_namespace_tree(source, expected_namespaces)

def test_async_function_namespace():
if sys.version_info < (3, 4):
pytest.skip('Test requires python 3.4 or later')
if sys.version_info < (3, 5):
pytest.skip('No async functions in python < 3.5')

source = '''
name_in_module = True
Expand Down

0 comments on commit ff618da

Please sign in to comment.