File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ def __getstate__(self):
298
298
for func_id , vals in self ._func_values_by_id .items ():
299
299
tmp_cache .append (func_id = func_id , vals = vals )
300
300
# TODO: (same as above) only empty this dict if we saved content
301
- # state["_func_values_by_id"] = {}
301
+ state ["_func_values_by_id" ] = {}
302
302
state ["_semaphores_by_func_id" ] = collections .defaultdict (
303
303
asyncio .BoundedSemaphore
304
304
)
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ def pytest_addoption(parser):
30
30
31
31
32
32
def pytest_configure (config ):
33
- # config.addinivalue_line("markers", "slow: mark test as slow to run")
34
- config .addinivalue_line ("markers" , "old: mark test for deprecated code" )
33
+ config .addinivalue_line ("markers" , "slow: mark test as slow to run" )
34
+ # config.addinivalue_line("markers", "old: mark test for deprecated code")
35
35
36
36
37
37
def pytest_collection_modifyitems (config , items ):
You can’t perform that action at this time.
0 commit comments