We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24760d commit d6a85b3Copy full SHA for d6a85b3
tests/test_mapping_helpers_usage.py
@@ -3,17 +3,19 @@
3
import pytest
4
5
from tests.guardrail_ast_utils import collect_name_call_lines, read_module_ast
6
+from tests.test_tool_mapping_reader_usage import TOOLS_MODULE
7
8
pytestmark = pytest.mark.architecture
9
10
HYPERBROWSER_ROOT = Path(__file__).resolve().parents[1] / "hyperbrowser"
11
+TOOLS_MODULE_UNDER_HYPERBROWSER = TOOLS_MODULE.relative_to("hyperbrowser")
12
ALLOWED_READ_KEYS_CALL_FILES = {
13
Path("mapping_utils.py"),
- Path("tools/__init__.py"),
14
+ TOOLS_MODULE_UNDER_HYPERBROWSER,
15
}
16
ALLOWED_COPY_VALUES_CALL_FILES = {
17
18
19
20
21
0 commit comments