Skip to content

Refactor to separate sync and async connections #4624

Refactor to separate sync and async connections

Refactor to separate sync and async connections #4624

Triggered via pull request March 26, 2025 16:07
Status Failure
Total duration 18m 37s
Artifacts 4

main.yaml

on: pull_request
Matrix: Run Integration Tests
Matrix: Run Unit Tests
Matrix: Run Type Checking
Run Linter and Formatter
58s
Run Linter and Formatter
Build package
38s
Build package
Matrix: Run Integration Tests Embedded
Matrix: Run Journey Tests
Codecov
0s
Codecov
Matrix: test-package
Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
0s
Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
Create a GitHub Release on new tags
0s
Create a GitHub Release on new tags
Fit to window
Zoom out
Zoom in

Annotations

62 errors
Run Type Checking (3.10, weaviate): weaviate/backup/async_.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.10, weaviate): weaviate/backup/sync.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/async_.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/async_.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/async_.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/async_.pyi#L29
Method "get_create_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/async_.pyi#L35
Method "get_restore_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/sync.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/sync.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.10, weaviate): weaviate/collections/backups/sync.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.12, weaviate): weaviate/backup/async_.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.12, weaviate): weaviate/backup/sync.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/async_.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/async_.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/async_.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/async_.pyi#L29
Method "get_create_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/async_.pyi#L35
Method "get_restore_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/sync.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/sync.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.12, weaviate): weaviate/collections/backups/sync.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.11, weaviate): weaviate/backup/async_.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.11, weaviate): weaviate/backup/sync.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/async_.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/async_.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/async_.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/async_.pyi#L29
Method "get_create_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/async_.pyi#L35
Method "get_restore_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/sync.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/sync.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.11, weaviate): weaviate/collections/backups/sync.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.13, weaviate): weaviate/backup/async_.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.13, weaviate): weaviate/backup/sync.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/async_.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/async_.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/async_.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/async_.pyi#L29
Method "get_create_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/async_.pyi#L35
Method "get_restore_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/sync.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/sync.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.13, weaviate): weaviate/collections/backups/sync.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.9, weaviate): weaviate/backup/async_.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.9, weaviate): weaviate/backup/sync.pyi#L9
"_BackupBase" is unknown import symbol (reportAttributeAccessIssue)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/async_.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/async_.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/async_.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/async_.pyi#L29
Method "get_create_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/async_.pyi#L35
Method "get_restore_status" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "CoroutineType[Any, Any, BackupStatusReturn]"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to type "ExecutorResult[BackupStatusReturn]"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "BackupStatusReturn"       "CoroutineType[Any, Any, BackupStatusReturn]" is not assignable to "Awaitable[BackupStatusReturn]"         Type parameter "_T_co@Awaitable" is covariant, but "weaviate.backup.backup.BackupStatusReturn" is not a subtype of "weaviate.backup.executor.BackupStatusReturn"           "weaviate.backup.backup.BackupStatusReturn" is not assignable to "weaviate.backup.executor.BackupStatusReturn" (reportIncompatibleMethodOverride)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/sync.pyi#L7
"BackupLocationType" is not exported from module "weaviate.backup.backup" (reportPrivateImportUsage)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/sync.pyi#L13
Method "create" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigCreate | None", override parameter is type "BackupConfigCreate | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigCreate | None" is not assignable to type "weaviate.backup.backup.BackupConfigCreate | None"       Type "BackupConfigCreate" is not assignable to type "BackupConfigCreate | None"         "weaviate.backup.executor.BackupConfigCreate" is not assignable to "weaviate.backup.backup.BackupConfigCreate"         "BackupConfigCreate" is not assignable to "None" ... (reportIncompatibleMethodOverride)
Run Type Checking (3.9, weaviate): weaviate/collections/backups/sync.pyi#L21
Method "restore" overrides class "_CollectionBackupBase" in an incompatible manner   Parameter 3 type mismatch: base parameter is type "BackupStorage", override parameter is type "BackupStorage"   Parameter 5 type mismatch: base parameter is type "BackupConfigRestore | None", override parameter is type "BackupConfigRestore | None"   Return type mismatch: base method returns type "ExecutorResult[BackupStatusReturn]", override returns type "BackupStatusReturn"     "weaviate.backup.executor.BackupStorage" is not assignable to "weaviate.backup.backup.BackupStorage"     Type "weaviate.backup.executor.BackupConfigRestore | None" is not assignable to type "weaviate.backup.backup.BackupConfigRestore | None"       Type "BackupConfigRestore" is not assignable to type "BackupConfigRestore | None"         "weaviate.backup.executor.BackupConfigRestore" is not assignable to "weaviate.backup.backup.BackupConfigRestore"         "BackupConfigRestore" is not assignable to "None" ... (reportIncompatibleMethodOverride)
test-package ($WEAVIATE_124)
Process completed with exit code 1.
Run Integration Tests (3.11, $WEAVIATE_130, false)
Process completed with exit code 1.
Run Integration Tests (3.10, $WEAVIATE_130, false)
Process completed with exit code 1.
Run Integration Tests (3.9, $WEAVIATE_130, false)
Process completed with exit code 1.
Run Integration Tests (3.12, $WEAVIATE_130, false)
Process completed with exit code 1.
Run Integration Tests (3.13, $WEAVIATE_130, false)
Process completed with exit code 1.
test-package ($WEAVIATE_125)
Process completed with exit code 1.
test-package ($WEAVIATE_126)
Process completed with exit code 1.
test-package ($WEAVIATE_127)
Process completed with exit code 1.
test-package ($WEAVIATE_129)
Process completed with exit code 1.
test-package ($WEAVIATE_130)
Process completed with exit code 1.
test-package ($WEAVIATE_128)
Process completed with exit code 1.

Artifacts

Produced during runtime
Name Size Digest
coverage-report-integration-embedded Expired
28.5 KB
sha256:15a1492851dab89db65ca628751f6c8156ab93515e7883ef650a811d49284ab8
coverage-report-mock_tests Expired
29.4 KB
sha256:d9a44446771f8e307357c57e0ce5c69b6ad3ba77771d7f5efa51d0f951c809fe
coverage-report-test Expired
29.7 KB
sha256:f503d3e94ff91be502f0989c963461be83af64c5d3f52f9d9534e63d265ae9ab
weaviate-python-client-wheel Expired
355 KB
sha256:338ff891513a4efea3887613284c2716a8d438a659e8347ce5bee2757494908b