Skip to content

Commit

Permalink
Revert "disable for bytecode"
Browse files Browse the repository at this point in the history
This reverts commit 423620e.
  • Loading branch information
majorgreys committed Sep 13, 2023
1 parent a6ea4f1 commit becdf3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
6 changes: 0 additions & 6 deletions tests/internal/test_injection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from contextlib import contextmanager
from random import shuffle
import sys

import mock
import pytest
Expand All @@ -15,11 +14,6 @@
from ddtrace.internal.utils.inspection import linenos


# bytecode does not support Python 3.12 yet
if sys.version_info[:2] >= (3, 12):
pytestmark = pytest.mark.skip


@contextmanager
def injected_hook(f, hook, arg, line=None):
if PY2 and isinstance(f, UnboundMethodType):
Expand Down
5 changes: 0 additions & 5 deletions tests/internal/test_wrapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
from ddtrace.internal.wrapping import wrap


# bytecode does not support Python 3.12 yet
if sys.version_info[:2] >= (3, 12):
pytestmark = pytest.mark.skip


async def async_func():
return 42

Expand Down

0 comments on commit becdf3c

Please sign in to comment.