Files
Jordan Ritter dd06dd89d1 refactor(showcase): rename packages/ to integrations/
The showcase framework directories better reflect their role as
integration examples rather than distributable packages.
Renames showcase/packages/ -> showcase/integrations/ and updates
the test docker-compose file reference accordingly.
2026-04-28 07:47:35 -07:00

10 lines
379 B
Python

"""
pytest configuration.
`src/` import path is configured declaratively via `pythonpath = src` in
pytest.ini (pytest 7+). No sys.path mutation here — the previous
`sys.path.insert(0, ...)` was a permanent side effect that leaked past
test collection and would shadow identically-named packages if this pytest
process was reused (e.g. by an IDE's persistent test runner).
"""