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 .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[profile.default]
test-threads = 6
fail-fast = false
slow-timeout = { period = "60s", terminate-after = "10" }
# retries = 1

# All the following tests keep failing because of zebra with the following error message:
# "Serialization/Deserialization Error: data did not match any variant of untagged enum Input at line 1 column <X>"
# We will ignore these tests for now in CI, until zebra releases the fix

[profile.ci]
test-threads = 6
slow-timeout = { period = "60s", terminate-after = "30" }
default-filter = """
not test(testnet)
& not test(client_rpcs)
Expand All @@ -21,6 +24,7 @@ path = "junit.xml"
# false negatives is to run the entire test suite.
test-threads = "num-cpus"
fail-fast = true # If a test fails against this profile, that's a surprise to be investigated
slow-timeout = { period = "60s", terminate-after = "10" }
# Excludes tests that fail in low-resource environments. Flakey test are listed at the beginning
# of the expression, slow at the end. If a slow and flakey test is discovered it should be included
# in the flakey category.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
fail-fast: false
matrix:
partition:
- "integration-tests::chain_cache"
# - "integration-tests::chain_cache" FIXME: this must be reintroduced when the chain index test hangs are debugged
- "integration-tests::fetch_service"
- "integration-tests::json_server"
- "integration-tests::local_cache"
Expand Down
13 changes: 11 additions & 2 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ figment = "0.10"
nonempty = "0.11.0"
proptest = "~1.2"
zip32 = "0.2.1"
zingolib = { git = "https://github.com/zingolabs/zingolib.git", rev = "f88e1d76ea244d6cc48d7fd4c3a609c6598318dc", features = [
"testutils",
] }

# Patch for vulnerable dependency
slab = "0.4.11"
Expand Down
8 changes: 8 additions & 0 deletions integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ version = { workspace = true }
anyhow = { workspace = true }

# Test utility
zainod = { workspace = true }
zaino-testutils = { workspace = true }
zaino-fetch = { workspace = true }
zaino-proto.workspace = true
Expand All @@ -33,3 +34,10 @@ tower = { workspace = true, features = ["buffer", "util"] }

# Runtime
tokio = { workspace = true }

# ZingoLib
zingolib = { workspace = true }

# Zingo-infra
zingo_test_vectors = { git = "https://github.com/zingolabs/infrastructure.git", tag = "zcash_local_net_v0.1.0" }
zcash_local_net = { git = "https://github.com/zingolabs/infrastructure.git", tag = "zcash_local_net_v0.1.0" }
Loading