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/test-bdk-ffi-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,4 @@ jobs:
uses: astral-sh/setup-uv@v7

- name: "Lint test targets"
run: uvx ruff check ./tests/
run: uv run --isolated --only-group lint ruff check ./tests/
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,4 @@ jobs:
uses: astral-sh/setup-uv@v7

- name: "Lint test targets"
run: uvx ruff check ./tests/
run: uv run --isolated --only-group lint ruff check ./tests/
2 changes: 1 addition & 1 deletion bdk-ffi
Submodule bdk-ffi updated 47 files
+23 −23 .github/ISSUE_TEMPLATE/release.md
+3 −1 .github/workflows/audit.yaml
+1 −1 .github/workflows/diff-check.yaml
+12 −2 .github/workflows/rust-ci.yaml
+8 −7 .github/workflows/test-android.yaml
+4 −2 .github/workflows/test-swift.yaml
+3 −1 .github/workflows/zizmor.yaml
+3 −1 CHANGELOG.md
+4 −0 README.md
+1 −17 bdk-android/README.md
+1 −1 bdk-android/justfile
+4 −2 bdk-android/lib/build.gradle.kts
+10 −0 bdk-android/lib/src/androidTest/assets/README.md
+ bdk-android/lib/src/androidTest/assets/db_v3.sqlite3
+ bdk-android/lib/src/androidTest/assets/old_databases/db_v032.sqlite3
+ bdk-android/lib/src/androidTest/assets/old_databases/db_v1.sqlite3
+ bdk-android/lib/src/androidTest/assets/old_databases/db_v2.sqlite3
+1 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/Constants.kt
+228 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/DatabaseVersionCompatTest.kt
+100 −11 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/DescriptorTest.kt
+58 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/ErrorsTest.kt
+112 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/SyncCallbacksTest.kt
+73 −71 bdk-ffi/Cargo.lock
+5 −5 bdk-ffi/Cargo.toml
+14 −0 bdk-ffi/src/bitcoin.rs
+90 −6 bdk-ffi/src/descriptor.rs
+59 −29 bdk-ffi/src/error.rs
+8 −6 bdk-ffi/src/keys.rs
+15 −0 bdk-ffi/src/kyoto.rs
+1 −0 bdk-ffi/src/lib.rs
+52 −0 bdk-ffi/src/signer.rs
+18 −0 bdk-ffi/src/tests/keys.rs
+95 −2 bdk-ffi/src/tests/tx_builder.rs
+345 −2 bdk-ffi/src/tests/wallet.rs
+114 −27 bdk-ffi/src/tx_builder.rs
+16 −0 bdk-ffi/src/types.rs
+300 −27 bdk-ffi/src/wallet.rs
+1 −1 bdk-swift/Tests/BitcoinDevKitTests/DescriptorTests.swift
+0 −61 bdk-swift/Tests/BitcoinDevKitTests/LiveElectrumClientTests.swift
+0 −62 bdk-swift/Tests/BitcoinDevKitTests/LiveKyotoTests.swift
+0 −84 bdk-swift/Tests/BitcoinDevKitTests/LiveMemoryWalletTests.swift
+0 −58 bdk-swift/Tests/BitcoinDevKitTests/LiveTransactionTests.swift
+0 −111 bdk-swift/Tests/BitcoinDevKitTests/LiveTxBuilderTests.swift
+0 −129 bdk-swift/Tests/BitcoinDevKitTests/LiveWalletTests.swift
+1 −1 bdk-swift/Tests/BitcoinDevKitTests/PersistenceTests.swift
+1 −1 bdk-swift/Tests/BitcoinDevKitTests/WalletTests.swift
+6 −8 bdk-swift/justfile
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,8 @@ submodule-to-master:
[doc("Run all tests.")]
test:
uv run python -m unittest --verbose

[group("Test")]
[doc("Lint the test targets (same command CI runs).")]
lint:
uv run --isolated --only-group lint ruff check ./tests/
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ dev = [
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.1.0",
]

lint = [
"ruff==0.15.22",
]
131 changes: 80 additions & 51 deletions uv.lock

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

Loading