File tree Expand file tree Collapse file tree 9 files changed +15
-12
lines changed Expand file tree Collapse file tree 9 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1313import pytest
1414
1515from ddtrace .testing .internal .constants import EMPTY_NAME
16- from ddtrace .testing .internal .coverage_api import coverage_collection
17- from ddtrace .testing .internal .coverage_api import install_coverage
1816from ddtrace .testing .internal .errors import SetupError
1917from ddtrace .testing .internal .git import get_workspace_path
2018from ddtrace .testing .internal .logging import catch_and_log_exceptions
3129from ddtrace .testing .internal .test_data import TestStatus
3230from ddtrace .testing .internal .test_data import TestSuite
3331from ddtrace .testing .internal .test_data import TestTag
34- from ddtrace .testing .internal .tracing_layer import install_global_trace_filter
35- from ddtrace .testing .internal .tracing_layer import trace_context
32+ from ddtrace .testing .internal .tracer_api .context import install_global_trace_filter
33+ from ddtrace .testing .internal .tracer_api .context import trace_context
34+ from ddtrace .testing .internal .tracer_api .coverage import coverage_collection
35+ from ddtrace .testing .internal .tracer_api .coverage import install_coverage
3636from ddtrace .testing .internal .utils import TestContext
3737
3838
Original file line number Diff line number Diff line change 55import re
66import typing as t
77
8- from ddtrace .internal .codeowners import Codeowners
98from ddtrace .testing .internal .api_client import APIClient
109from ddtrace .testing .internal .api_client import TestProperties
1110from ddtrace .testing .internal .ci import CITag
2827from ddtrace .testing .internal .test_data import TestSession
2928from ddtrace .testing .internal .test_data import TestSuite
3029from ddtrace .testing .internal .test_data import TestTag
30+ from ddtrace .testing .internal .tracer_api import Codeowners
3131from ddtrace .testing .internal .utils import asbool
3232from ddtrace .testing .internal .writer import TestCoverageWriter
3333from ddtrace .testing .internal .writer import TestOptWriter
Original file line number Diff line number Diff line change 1+ """
2+ dd-trace-py interaction layer.
3+ """
4+
5+ from ddtrace .internal ._encoding import packb as msgpack_packb # noqa: F401
6+ from ddtrace .internal ._rand import rand64bits # noqa: F401
7+ from ddtrace .internal .codeowners import Codeowners # noqa: F401
Original file line number Diff line number Diff line change 1- """
2- dd-trace-py interaction layer.
3- """
4-
51import contextlib
62import logging
73import typing as t
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 33import re
44import typing as t
55
6- from ddtrace .internal ._rand import rand64bits
6+ from ddtrace .testing . internal .tracer_api import rand64bits
77
88
99if t .TYPE_CHECKING :
Original file line number Diff line number Diff line change 55import typing as t
66import uuid
77
8- from ddtrace .internal ._encoding import packb as msgpack_packb
98from ddtrace .testing .internal .http import BackendConnectorSetup
109from ddtrace .testing .internal .http import FileAttachment
1110from ddtrace .testing .internal .test_data import TestItem
1413from ddtrace .testing .internal .test_data import TestSession
1514from ddtrace .testing .internal .test_data import TestStatus
1615from ddtrace .testing .internal .test_data import TestSuite
16+ from ddtrace .testing .internal .tracer_api import msgpack_packb
1717from ddtrace .version import __version__
1818
1919
Original file line number Diff line number Diff line change 22from unittest import mock
33
44from ddtrace .internal .coverage .code import ModuleCodeCollector
5- from ddtrace .testing .internal .coverage_api import coverage_collection
5+ from ddtrace .testing .internal .tracer_api . coverage import coverage_collection
66
77
88def test_get_coverage_bitmaps () -> None :
You can’t perform that action at this time.
0 commit comments