Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
- linux / stable
- linux / beta
- macOS / stable
- windows / stable

include:
- name: linux / stable
Expand All @@ -73,6 +74,9 @@ jobs:
- name: macOS / stable
os: macOS-latest

- name: windows / stable
os: windows-latest

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
3 changes: 2 additions & 1 deletion src/database/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,8 @@ fn user_version() {
}

#[test]
#[cfg(feature = "encryption")]
// TODO: This test fails on windows with a rather alarming "Invalid access to memory location."
#[cfg(all(feature = "encryption", not(windows)))]
fn sqlcipher_cipher_settings_update() {
let mut path = PathBuf::from(file!());
path.pop();
Expand Down
1 change: 1 addition & 0 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ fn search_with_specific_key() {
}

#[test]
#[cfg(not(windows))] // Fails with "The process cannot access the file because it is being used by another process."
fn delete() {
let tmpdir = tempdir().unwrap();
let path: &Path = tmpdir.path();
Expand Down