8000 fix: Fix invalid invocation of pytest.skip · etherscan-io/sentry-python@1f92e99 · GitHub
[go: up one dir, main page]

Skip to content
10000

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

Lines changed: 1 addition & 1 deletion
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)
0