Skip to content

Commit

Permalink
tests: start fixing when other rusqlite fixes are used
Browse files Browse the repository at this point in the history
  • Loading branch information
cljoly committed Mar 15, 2024
1 parent 3c6cc4e commit 6227d84
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ jobs:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- run: cargo install --version 23.12.0 cargo-mutants
- run: cargo install --version 24.2.1 cargo-mutants
- uses: actions-rs/cargo@v1
with:
command: mutants
command: mutants --colors=always
- name: Archive results
uses: actions/upload-artifact@v3
if: failure()
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ members = [
"rusqlite_migration",
"rusqlite_migration_tokio_async",
"rusqlite_migration_tests",
"examples/*",
]
exclude = ["examples/target"]

# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
5 changes: 0 additions & 5 deletions examples/Cargo.toml

This file was deleted.

3 changes: 1 addition & 2 deletions examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ mktemp = "0.5"

[dependencies.rusqlite]
version = "0.30.0"
default-features = false
features = []
features = ["extra_check"] # A realistic use case
4 changes: 4 additions & 0 deletions rusqlite_migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ iai = "0.1"
insta = "1.34.0"
mutants = "0.0.3"

[dev-dependencies.rusqlite]
version = "*" # The version is constrained by the normal dependency package
features = ["extra_check"]

[[bench]]
name = "criterion"
harness = false
Expand Down

0 comments on commit 6227d84

Please sign in to comment.