Private imports
private_imports
Flag tests that reach into private (_prefixed) package symbols.
Tests that import _private helpers couple the suite to implementation
details, turning refactors into multi-file chores. The rule walks every
tests/**/test_*.py file, collects imports of underscore-prefixed
symbols from first-party packages and classifies each hit via
axm_ast.extract_module_info.
Dunders (__version__) are always ignored and _UPPER_CASE constants
are ignored by default — flip include_constants=True on the rule
instance to surface those as well.
PrivateImportsRule
dataclass
Bases: ProjectRule
Report test imports of private package symbols.
Source code in packages/axm-audit/src/axm_audit/core/rules/test_quality/private_imports.py
| Python | |
|---|---|
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | |
rule_id
property
Stable identifier for this rule.
check(project_path)
Scan test files in project_path for private-symbol imports.
Walks every tests/**/test_*.py file under project_path,
collects ImportFrom nodes that reference first-party packages
and flags each underscore-prefixed alias. Dunders are always
ignored; _UPPER_CASE constants are ignored unless
include_constants is True.
Returns a :class:CheckResult with passed=True when no
private imports are found. Otherwise details["findings"]
lists each offending import (test file, line, source module,
symbol, and resolved kind) and details["score"] reports a
100-point score penalised by _SCORE_PENALTY per finding.