Skip to content

Commit 27b6968

Browse files
authored
Skip tests BlockWithReceipts due to invalid test asserts (#2374)
The test expects transaction_hash in the transaction object, but according to the spec, it's only required under receipt.
1 parent 0239e77 commit 27b6968

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/starknet-go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
run: go mod download
3232

3333
- name: Test RPC on testnet
34-
run: cd rpc && go test -timeout 1200s -v -env testnet .
34+
run: cd rpc && go test -skip 'TestBlockWithReceipts' -timeout 1200s -v -env testnet .
3535
env:
3636
INTEGRATION_BASE: ${{ secrets.TEST_RPC_URL }}

.github/workflows/starknet-rs-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Run jsonrpc tests
2727
run: |
2828
cd starknet-providers && cargo test jsonrpc
29-
cd ../starknet-accounts && cargo test jsonrpc -- --skip can_declare_cairo0_contract_with_jsonrpc
29+
cd ../starknet-accounts && cargo test jsonrpc -- --skip can_declare_cairo0_contract_with_jsonrpc --skip jsonrpc_get_block_with_receipts
3030
env:
3131
STARKNET_RPC: ${{ secrets.STARKNET_RPC }}
3232
RUST_BACKTRACE: full

0 commit comments

Comments
 (0)