@@ -2358,7 +2358,9 @@ async def test_async_eth_replace_transaction_gas_price_too_low(
2358
2358
with pytest .raises (Web3ValueError ):
2359
2359
await async_w3 .eth .replace_transaction (txn_hash , txn_params )
2360
2360
2361
- @flaky_geth_dev_mining
2361
+ @pytest .mark .xfail (
2362
+ reason = "Very flaky on CI runs, hard to reproduce locally" , strict = False
2363
+ )
2362
2364
@pytest .mark .asyncio
2363
2365
async def test_async_eth_replace_transaction_gas_price_defaulting_minimum (
2364
2366
self , async_w3 : "AsyncWeb3" , async_keyfile_account_address : ChecksumAddress
@@ -2382,7 +2384,9 @@ async def test_async_eth_replace_transaction_gas_price_defaulting_minimum(
2382
2384
gas_price * 1.125
2383
2385
) # minimum gas price
2384
2386
2385
- @flaky_geth_dev_mining
2387
+ @pytest .mark .xfail (
2388
+ reason = "Very flaky on CI runs, hard to reproduce locally" , strict = False
2389
+ )
2386
2390
@pytest .mark .asyncio
2387
2391
async def test_async_eth_replace_transaction_gas_price_defaulting_strategy_higher (
2388
2392
self , async_w3 : "AsyncWeb3" , async_keyfile_account_address : ChecksumAddress
@@ -2411,7 +2415,9 @@ def higher_gas_price_strategy(async_w3: "AsyncWeb3", txn: TxParams) -> Wei:
2411
2415
) # Strategy provides higher gas price
2412
2416
async_w3 .eth .set_gas_price_strategy (None ) # reset strategy
2413
2417
2414
- @flaky_geth_dev_mining
2418
+ @pytest .mark .xfail (
2419
+ reason = "Very flaky on CI runs, hard to reproduce locally" , strict = False
2420
+ )
2415
2421
@pytest .mark .asyncio
2416
2422
async def test_async_eth_replace_transaction_gas_price_defaulting_strategy_lower (
2417
2423
self , async_w3 : "AsyncWeb3" , async_keyfile_account_address : ChecksumAddress
0 commit comments