Skip to content

Commit 1f92e99

Browse files
committed
fix: Fix invalid invocation of pytest.skip
1 parent 1aec03b commit 1f92e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils/test_contextvars.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_leaks(with_gevent):
2424
gevent.monkey.patch_all()
2525
except Exception as e:
2626
if "_RLock__owner" in str(e):
27-
pytest.skip(reason="https://github.com/gevent/gevent/issues/1380")
27+
pytest.skip("https://github.com/gevent/gevent/issues/1380")
2828
else:
2929
raise
3030

0 commit comments

Comments
 (0)