Skip to content

Commit 653fc27

Browse files
committed
Revert "disable for bytecode"
This reverts commit 423620e.
1 parent 423620e commit 653fc27

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

tests/internal/test_injection.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from contextlib import contextmanager
22
from random import shuffle
3-
import sys
43

54
import mock
65
import pytest
@@ -15,11 +14,6 @@
1514
from ddtrace.internal.utils.inspection import linenos
1615

1716

18-
# bytecode does not support Python 3.12 yet
19-
if sys.version_info[:2] >= (3, 12):
20-
pytestmark = pytest.mark.skip
21-
22-
2317
@contextmanager
2418
def injected_hook(f, hook, arg, line=None):
2519
if PY2 and isinstance(f, UnboundMethodType):

tests/internal/test_wrapping.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@
99
from ddtrace.internal.wrapping import wrap
1010

1111

12-
# bytecode does not support Python 3.12 yet
13-
if sys.version_info[:2] >= (3, 12):
14-
pytestmark = pytest.mark.skip
15-
16-
1712
async def async_func():
1813
return 42
1914

0 commit comments

Comments
 (0)