Skip to content

Commit

Permalink
Run e2e tests sequentially to avoid sequence number mismatches
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Oct 25, 2022
1 parent bc24477 commit 72d031b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ jobs:
- run: make build-test-wasms
- run: docker run -d -p 8000:8000 stellar/quickstart:soroban-dev --standalone --enable-soroban-rpc --enable-core-artificially-accelerate-time-for-testing --protocol-version 20
- run: while ! [ "$(curl -s --fail localhost:8000 | jq '.history_latest_ledger')" -gt 0 ]; do echo waiting; sleep 1; done
- run: cargo test --test 'e2e*' --target ${{ matrix.target }} -- --ignored
# Run e2e tests sequentially to avoid sequence number mismatches
- run: cargo test --test 'e2e*' --target ${{ matrix.target }} -- --ignored --test-threads 1

publish-dry-run:
if: startsWith(github.head_ref, 'release/')
Expand Down

0 comments on commit 72d031b

Please sign in to comment.