Skip to content

Commit

Permalink
Skip failing tests on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd committed Dec 4, 2024
1 parent 83d4a42 commit 2135deb
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import shortfin as sf
import shortfin.array as sfnp
from unittest.mock import Mock, MagicMock
import sys
import threading
import time
from dataclasses import dataclass
Expand Down Expand Up @@ -248,6 +249,10 @@ def filled_cache(trie_cache, published_sequence):
return sequences


@pytest.mark.skipif(
sys.platform == "win32",
reason="sequence eviction is not working correctly on Windows",
)
@pytest.mark.parametrize(
"access_count", [1, TEST_POOL_CAPACITY // 2, TEST_POOL_CAPACITY - 1]
)
Expand Down

0 comments on commit 2135deb

Please sign in to comment.