Skip to content

Commit b76a835

Browse files
committed
Fix tests.
1 parent 3f5072b commit b76a835

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

tests/async_fixtures/test_async_gen_fixtures_36.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ async def test_async_gen_fixture_finalized(mock):
3636
assert mock.called
3737
assert mock.call_args_list[-1] == unittest.mock.call(END)
3838
finally:
39-
mock.reset_mock()
39+
mock.reset_mock()

tests/conftest.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,9 @@
44
import pytest
55

66
collect_ignore = []
7-
if sys.version_info[:2] < (3, 5):
8-
collect_ignore.append("test_simple_35.py")
9-
collect_ignore.append("test_event_loop_scope_35.py")
10-
collect_ignore.append("markers/test_class_marker_35.py")
11-
collect_ignore.append("markers/test_module_marker_35.py")
12-
collect_ignore.append("async_fixtures/test_async_fixtures_35.py")
137
if sys.version_info[:2] < (3, 6):
148
collect_ignore.append("async_fixtures/test_async_gen_fixtures_36.py")
9+
collect_ignore.append("async_fixtures/test_nested_36.py")
1510

1611

1712
@pytest.yield_fixture()

0 commit comments

Comments
 (0)