Skip to content

Commit e9dc56f

Browse files
Ryan Whitmorebrandonwillard
authored andcommitted
Format pytest marker changes with black.
1 parent dc6f1bf commit e9dc56f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_benchmarks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@ def test_unify_chain_stream_large(size, benchmark):
100100
res = benchmark(unify, form, term, {})
101101
assert res[a_lv] == "a"
102102

103+
103104
@pytest.mark.skipif(
104-
platform.python_implementation() == "PyPy" or (platform.python_implementation() == "CPython" and sys.version_info >= (3, 12)),
105+
platform.python_implementation() == "PyPy"
106+
or (platform.python_implementation() == "CPython" and sys.version_info >= (3, 12)),
105107
reason="Test skipped on PyPy and CPython 3.12+ due to recursion limit changes.",
106108
)
107109
@pytest.mark.benchmark(group="reify_chain")

0 commit comments

Comments
 (0)