Skip to content

Commit 88f757a

Browse files
committed
fixes
1 parent 6fa1859 commit 88f757a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/asyncmd/trajectory/trajectory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def __getstate__(self):
298298
for func_id, vals in self._func_values_by_id.items():
299299
tmp_cache.append(func_id=func_id, vals=vals)
300300
# TODO: (same as above) only empty this dict if we saved content
301-
#state["_func_values_by_id"] = {}
301+
state["_func_values_by_id"] = {}
302302
state["_semaphores_by_func_id"] = collections.defaultdict(
303303
asyncio.BoundedSemaphore
304304
)

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def pytest_addoption(parser):
3030

3131

3232
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")
3535

3636

3737
def pytest_collection_modifyitems(config, items):

0 commit comments

Comments
 (0)