File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -36,4 +36,4 @@ async def test_async_gen_fixture_finalized(mock):
36
36
assert mock .called
37
37
assert mock .call_args_list [- 1 ] == unittest .mock .call (END )
38
38
finally :
39
- mock .reset_mock ()
39
+ mock .reset_mock ()
File renamed without changes.
Original file line number Diff line number Diff line change 4
4
import pytest
5
5
6
6
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" )
13
7
if sys .version_info [:2 ] < (3 , 6 ):
14
8
collect_ignore .append ("async_fixtures/test_async_gen_fixtures_36.py" )
9
+ collect_ignore .append ("async_fixtures/test_nested_36.py" )
15
10
16
11
17
12
@pytest .yield_fixture ()
You can’t perform that action at this time.
0 commit comments