fmt
This commit is contained in:
parent
45882e7de2
commit
05f097e9bc
2 changed files with 13 additions and 10 deletions
|
|
@ -203,16 +203,7 @@ describe('url-state', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('round-trips an explicit "all overlays off" via the __none sentinel', () => {
|
it('round-trips an explicit "all overlays off" via the __none sentinel', () => {
|
||||||
const params = stateToParams(
|
const params = stateToParams(null, {}, [], new Set(), 'area', undefined, undefined, new Set());
|
||||||
null,
|
|
||||||
{},
|
|
||||||
[],
|
|
||||||
new Set(),
|
|
||||||
'area',
|
|
||||||
undefined,
|
|
||||||
undefined,
|
|
||||||
new Set()
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(params.getAll('overlay')).toEqual(['__none']);
|
expect(params.getAll('overlay')).toEqual(['__none']);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,18 @@ dev = [
|
||||||
"ruff>=0.8.0",
|
"ruff>=0.8.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
filterwarnings = [
|
||||||
|
# The pipeline deliberately forks worker pools (fuzzy_join's
|
||||||
|
# ProcessPoolExecutor, postcode_boundaries' fork context) for copy-on-write
|
||||||
|
# sharing of large arrays; the fork-after-threads deadlock hazard is
|
||||||
|
# mitigated by never calling threaded libraries (polars/rayon) in the
|
||||||
|
# workers. Python 3.12's blanket fork-with-threads DeprecationWarning is a
|
||||||
|
# false positive here, surfacing only as cross-test noise when a background
|
||||||
|
# thread happens to be alive at fork time.
|
||||||
|
"ignore:This process .* is multi-threaded, use of fork:DeprecationWarning",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.deptry]
|
[tool.deptry]
|
||||||
# analyses/ and scripts/ use transitive deps; finder/ and video/tts have their own UV projects.
|
# analyses/ and scripts/ use transitive deps; finder/ and video/tts have their own UV projects.
|
||||||
extend_exclude = [".*/\\.venv", "analyses", "scripts", "finder", "video/tts"]
|
extend_exclude = [".*/\\.venv", "analyses", "scripts", "finder", "video/tts"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue