Skip to content

Commit

Permalink
Update test_basic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jul 31, 2023
1 parent 565711c commit f2190ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import asyncio
import platform
import sys
from functools import _CacheInfo, partial
from typing import Callable
Expand Down Expand Up @@ -189,7 +190,8 @@ async def coro(self) -> int:
)


@pytest.mark.xfail(sys.version_info[:2] == (3, 9), reason="#511")
@pytest.mark.xfail(sys.version_info[:2] == (3, 9)
and platform.python_implementation() != "PyPy", reason="#511")
async def test_alru_cache_classmethod() -> None:
class A:
offset = 3
Expand Down

0 comments on commit f2190ca

Please sign in to comment.