Closed Turbo87 closed 3 weeks ago
tests/sync_wrapper.rs is gated by #[cfg(feature = "async-connection-wrapper")]. Since the async-connection-wrapper feature wasn't explicitly enabled, we were not actually running these tests on CI.
tests/sync_wrapper.rs
#[cfg(feature = "async-connection-wrapper")]
async-connection-wrapper
looks like the sqlite variant of one of the tests was unhappy. I've added another commit that should fix it.
sqlite
looks like this is finally green now too 😅
tests/sync_wrapper.rs
is gated by#[cfg(feature = "async-connection-wrapper")]
. Since theasync-connection-wrapper
feature wasn't explicitly enabled, we were not actually running these tests on CI.