fix(tests): add mods/sdk to sys.path in test_kindred_pure #265
Reference in New Issue
Block a user
Delete Branch "fix/test-sdk-path"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The SDK migration (#250) moved
kindred_sdkintomods/sdk/but the test file was not updated with the new path, causingModuleNotFoundError: No module named 'kindred_sdk'in CI.Adds
sys.path.insert(0, str(_REPO_ROOT / "mods" / "sdk"))alongside the existing addon source paths.All 78 tests pass.