mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
dd06dd89d1
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.
10 lines
379 B
Python
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).
|
|
"""
|