diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55bdbe73..b96e056f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,10 +49,10 @@ jobs: steps: - uses: actions/checkout@v3 - name: Sync signet - run: cargo test --verbose test_signet_syncs + run: cargo test --verbose signet_syncs bitcoind: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Integration test - run: cargo test -- --test-threads 1 --skip test_signet_syncs --nocapture + run: cargo test -- --test-threads 1 --skip signet_syncs --nocapture diff --git a/justfile b/justfile index a4717ba8..ae32d066 100644 --- a/justfile +++ b/justfile @@ -13,10 +13,10 @@ test: cargo test --doc sync: - cargo test test_signet_syncs -- --nocapture + cargo test signet_syncs -- --nocapture integrate: - cargo test -- --test-threads 1 --nocapture --skip test_signet_syncs + cargo test -- --test-threads 1 --nocapture --skip signet_syncs example: cargo run --example signet --release @@ -32,5 +32,5 @@ all: cargo clippy --all-targets cargo test --lib cargo test --doc - cargo test -- --test-threads 1 --nocapture --skip test_signet_syncs + cargo test -- --test-threads 1 --nocapture --skip signet_syncs cargo run --example signet diff --git a/tests/core.rs b/tests/core.rs index f77127ff..6f750ce3 100644 --- a/tests/core.rs +++ b/tests/core.rs @@ -144,7 +144,7 @@ async fn print_logs(mut log_rx: Receiver, mut warn_rx: UnboundedReceiver