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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ jobs:
env:
TEST_POSTGRES_URL: postgres://seedkit:seedkit@localhost:5432/seedkit_test
TEST_MYSQL_URL: mysql://seedkit:seedkit@localhost:3306/seedkit_test
run: cargo test --test '*'
run: cargo test --test '*' -- --test-threads=1
236 changes: 233 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/seedkit-core", "crates/seedkit-cli", "crates/seedkit-testutil
resolver = "2"

[workspace.package]
version = "1.2.0"
version = "1.2.1"
edition = "2021"
authors = ["SeedKit Contributors"]
license = "MIT"
Expand Down Expand Up @@ -69,6 +69,7 @@ dotenvy = "0.15"

# Testing
tempfile = "3"
criterion = { version = "0.5", features = ["html_reports"] }

# Logging
tracing = "0.1"
Expand Down
Loading
Loading