Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,22 @@ jobs:
- run: cargo fmt --all --check
- run: WRAITH_PROPTEST_CASES=16384 cargo test --workspace --test properties

stellar-chaos-nightly:
stellar-deploy-dryrun:
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
defaults:
run:
working-directory: stellar
env:
WRAITHCHAOS_MODE: "1"
WRAITHCHAOS_FAILURE_RATE: "0.3"
WRAITHCHAOS_SEED: "42"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Run chaos integration tests
run: cargo test --package integration-tests -- --nocapture
continue-on-error: true
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions stellar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ members = [
"bench-crossover",
"wraith-asset-policy",
"wraith-metrics",
"integration-tests",
"contracts/governance",
]
resolver = "2"
Expand Down
14 changes: 14 additions & 0 deletions stellar/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "integration-tests"
version = "0.1.0"
edition = "2021"

[dependencies]
soroban-sdk = { workspace = true }
stealth-announcer = { path = "../stealth-announcer" }
stealth-registry = { path = "../stealth-registry" }
stealth-sender = { path = "../stealth-sender" }
wraith-names = { path = "../wraith-names" }

[dev-dependencies]
soroban-sdk = { workspace = true, features = ["testutils"] }
12 changes: 0 additions & 12 deletions stellar/integration-tests/src

This file was deleted.

5 changes: 5 additions & 0 deletions stellar/integration-tests/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//! Crate root for the Stellar integration-tests package.
//!
//! The actual test logic lives in `tests/chaos.rs` and the chaos harness in
//! `tests/harness.rs`. This file exists only so Cargo recognises the package
//! as a library crate.
Loading