checkpoint: into main from release/2.1.4 @ 66683b957d (#17217)

Source hash: 66683b957d
Remaining commits: 0
This commit is contained in:
Chris Marslender 2024-01-08 08:14:46 -07:00 committed by GitHub
commit 9adb0e49bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
from __future__ import annotations
import asyncio
import sys
import time
from typing import Any, Awaitable, Callable, Dict, List, Optional
@ -176,6 +177,7 @@ async def test_nft_wallet_creation_automatically(
assert await nft_wallet_1.get_nft_count() == 1
@pytest.mark.skipif(sys.platform == "win32" and sys.version_info < (3, 9), reason="Flaky on Windows+3.8")
@pytest.mark.limit_consensus_modes(allowed=[ConsensusMode.PLAIN, ConsensusMode.HARD_FORK_2_0], reason="save time")
@pytest.mark.parametrize("trusted", [True, False])
@pytest.mark.anyio