--- a/tests/test_tracing.py
+++ b/tests/test_tracing.py
@@ -4,6 +4,7 @@
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
import inspect
+import sys
from types import FrameType
from typing import (
Iterator,
@@ -235,6 +236,7 @@ class TestTraceCalls:
]
assert collector.traces == expected
+ @pytest.mark.skipif(sys.version_info >= (3, 11), reason="see issue 274")
def test_generator_trace(self, collector):
with trace_calls(collector, max_typed_dict_size=0):
for _ in squares(3):