From 9a136739d35dfa6c3bb9bf1cab0462f3c9841aa3 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Tue, 10 Dec 2024 15:50:18 -0500 Subject: [PATCH] fix: run each ledger test by themselves --- .github/workflows/rpc-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rpc-tests.yml b/.github/workflows/rpc-tests.yml index 1c0228556..e7c240c3c 100644 --- a/.github/workflows/rpc-tests.yml +++ b/.github/workflows/rpc-tests.yml @@ -48,6 +48,6 @@ jobs: sudo apt install -y libudev-dev - run: cargo build --features emulator-tests - run: SOROBAN_PORT=8000 cargo test --features it --package soroban-test --test it -- integration - - run: SOROBAN_PORT=8000 cargo test --features it --features emulator-tests --package soroban-test --test it -- integration::emulator::nanos - - run: SOROBAN_PORT=8000 cargo test --features it --features emulator-tests --package soroban-test --test it -- integration::emulator::nanox - - run: SOROBAN_PORT=8000 cargo test --features it --features emulator-tests --package soroban-test --test it -- integration::emulator::nanosp + - run: SOROBAN_PORT=8000 cargo test --features it --features emulator-tests --package soroban-test --test it -- integration::emulator::nanos --exact + - run: SOROBAN_PORT=8000 cargo test --features it --features emulator-tests --package soroban-test --test it -- integration::emulator::nanox --exact + - run: SOROBAN_PORT=8000 cargo test --features it --features emulator-tests --package soroban-test --test it -- integration::emulator::nanosp --exact