Skip to content

Commit 745e504

Browse files
committed
reorg tests again
1 parent 0c27964 commit 745e504

File tree

85 files changed

+71
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+71
-73
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,16 @@ lines-after-imports = 2
128128

129129
[tool.ruff.lint.per-file-ignores]
130130
"bin/**/*.py" = [
131+
"INP001", # missing __init__.py
131132
"T201", # print found
132133
]
133134
"dev/**/*.py" = [
135+
"INP001", # missing __init__.py
134136
"T201", # print found
135137
]
136138
"tests/**/*.py" = [
139+
"INP001", # missing __init__.py
137140
"S101", # Use of `assert` detected
138-
139141
"T201", # print found
140142
]
141143

File renamed without changes.

tests/_30_utils_tests/schema_tests/test_check_schema_conformance.py renamed to tests/0_independant/test_check_schema_conformance.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,24 @@
55
# ruff: noqa: SLF001
66
# pyright: reportPrivateUsage=false
77

8-
from typing import Any
8+
from typing import Any, TypedDict
99

1010
import pocket_build.utils_schema as mod_utils_schema
11-
from tests._30_utils_tests.schema_tests.utils import MiniBuild
1211
from tests.utils import make_summary
1312

1413

14+
# ---------------------------------------------------------------------------
15+
# Helpers
16+
# ---------------------------------------------------------------------------
17+
18+
# --- Fixtures / Sample TypedDicts -------------------------------------------
19+
20+
21+
class MiniBuild(TypedDict):
22+
include: list[str]
23+
out: str
24+
25+
1526
# --- smoke -----------------------------------------------------
1627

1728

File renamed without changes.
File renamed without changes.

tests/_30_utils_tests/_310_color_tests/test_determine_color_enabled.py renamed to tests/0_independant/test_determine_color_enabled.py

File renamed without changes.

tests/_30_utils_tests/schema_tests/test_flush_schema_aggregators.py renamed to tests/0_independant/test_flush_schema_aggregators.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)