Skip to content

Remove skipping tests #1599

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: development
Choose a base branch
from
Draft
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
6 changes: 0 additions & 6 deletions starknet_py/tests/e2e/tests_on_networks/trace_api_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@


@pytest.mark.asyncio
@pytest.mark.skip("TODO(#1562)")
async def test_trace_transaction_invoke_v3(client_sepolia_testnet):
invoke_tx_hash = 0x26476DA48E56E5E7025543AD0BB9105DF00EE08571C6D17C4207462FF7717C4
trace = await client_sepolia_testnet.trace_transaction(tx_hash=invoke_tx_hash)
Expand All @@ -27,7 +26,6 @@ async def test_trace_transaction_invoke_v3(client_sepolia_testnet):


@pytest.mark.asyncio
@pytest.mark.skip("TODO(#1562)")
async def test_trace_transaction_declare_v3(client_sepolia_testnet):
declare_tx_hash = 0x6054540622D534FFFFB162A0E80C21BC106581EAFEB3EFAD29385B78E04983D
trace = await client_sepolia_testnet.trace_transaction(tx_hash=declare_tx_hash)
Expand All @@ -39,7 +37,6 @@ async def test_trace_transaction_declare_v3(client_sepolia_testnet):


@pytest.mark.asyncio
@pytest.mark.skip("TODO(#1562)")
async def test_trace_transaction_deploy_account_v3(client_sepolia_testnet):
deploy_account_tx_hash = (
0x06718B783A0B888F5421C4EB76A532FEB9FD5167B2B09274298F79798C782B32
Expand All @@ -56,7 +53,6 @@ async def test_trace_transaction_deploy_account_v3(client_sepolia_testnet):


@pytest.mark.asyncio
@pytest.mark.skip("TODO(#1562)")
async def test_trace_transaction_l1_handler(client_sepolia_testnet):
l1_handler_tx_hash = (
0x4C8C57B3AB646EF56AEF3DEF69A01BC86D049B98F25EBFE3699334D86C24D5
Expand All @@ -71,7 +67,6 @@ async def test_trace_transaction_l1_handler(client_sepolia_testnet):


@pytest.mark.asyncio
@pytest.mark.skip("TODO(#1562)")
async def test_trace_transaction_reverted(client_sepolia_testnet):
tx_hash = 0x00FECCA6A328DD11F40B79C30FE22D23BC6975D1A0923A95B90AFF4016A84333
trace = await client_sepolia_testnet.trace_transaction(tx_hash=tx_hash)
Expand All @@ -80,7 +75,6 @@ async def test_trace_transaction_reverted(client_sepolia_testnet):


@pytest.mark.asyncio
@pytest.mark.skip("TODO(#1562)")
async def test_get_block_traces(client_sepolia_testnet):
block_number = 80000
block_transaction_traces = await client_sepolia_testnet.trace_block_transactions(
Expand Down
Loading