We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6482f0 commit 4c1367bCopy full SHA for 4c1367b
tests/integrations/rq/test_rq.py
@@ -35,6 +35,7 @@ def _patch_rq_get_server_version(monkeypatch):
35
36
37
def crashing_job(foo):
38
+ print("RUNNING CRASHING JOB")
39
1 / 0
40
41
@@ -254,6 +255,11 @@ def test_traces_sampler_gets_correct_values_in_sampling_context(
254
255
@pytest.mark.skipif(
256
parse_version(rq.__version__) < (1, 5), reason="At least rq-1.5 required"
257
)
258
+@pytest.mark.skipif(
259
+ parse_version(rq.__version__) >= (2,),
260
+ reason="Test broke in RQ 2.0. Investigate and fix. "
261
+ "See https://github.com/getsentry/sentry-python/issues/3707.",
262
+)
263
def test_job_with_retries(sentry_init, capture_events):
264
sentry_init(integrations=[RqIntegration()])
265
events = capture_events()
0 commit comments