Skip to content

Commit

Permalink
Skip flaky test on windows and python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Jan 3, 2024
1 parent 7d555fe commit 6a151c8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/wallet/nft_wallet/test_nft_wallet.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import annotations

import asyncio
import sys
import time
from typing import Any, Awaitable, Callable, Dict, List, Optional

Expand Down Expand Up @@ -178,6 +179,7 @@ async def num_wallets() -> int:
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
Expand Down

0 comments on commit 6a151c8

Please sign in to comment.