Driver is able to handle the memory tests which run in a subprocess and iterate through hundreds of connections
(self)
| 446 | |
| 447 | @property |
| 448 | def memory_process_intensive(self): |
| 449 | """Driver is able to handle the memory tests which run in a subprocess |
| 450 | and iterate through hundreds of connections |
| 451 | |
| 452 | """ |
| 453 | return skip_if( |
| 454 | [ |
| 455 | no_support("oracle", "Oracle XE usually can't handle these"), |
| 456 | no_support( |
| 457 | "mssql", "MS drivers struggle plus the DB does too" |
| 458 | ), |
| 459 | no_support("+aiosqlite", "very unreliable driver"), |
| 460 | self._running_on_windows(), |
| 461 | ] |
| 462 | ) |
| 463 | |
| 464 | @property |
| 465 | def updateable_autoincrement_pks(self): |
nothing calls this directly
no test coverage detected