From 6e6f30d504223fb33c164cb3da50be71129f25f1 Mon Sep 17 00:00:00 2001 From: Yernar Sadybekov Date: Tue, 15 Jul 2025 14:02:08 -0700 Subject: [PATCH] Fix failing CI failures on Github workflow (#3195) Summary: Pull Request resolved: https://github.com/pytorch/torchrec/pull/3195 Removing the `settings` decorator from `test_sharded_quant_kv_zch`. This decorator is only meaningful for Hypothesis property-based tests that use `given` with generated parameters. Since `test_sharded_quant_kv_zch` is a regular unit test with fixed inputs and no `given` decorator, the `settings` decorator serves no purpose and causes CI failures. Example reference: https://github.com/pytorch/torchrec/actions/runs/16298208915/job/46025529461?pr=3193#step:15:7136 Reviewed By: jd7-tr Differential Revision: D78357214 --- torchrec/distributed/tests/test_quant_sequence_model_parallel.py | 1 - 1 file changed, 1 deletion(-) diff --git a/torchrec/distributed/tests/test_quant_sequence_model_parallel.py b/torchrec/distributed/tests/test_quant_sequence_model_parallel.py index 858281a6b..d7e4678ea 100644 --- a/torchrec/distributed/tests/test_quant_sequence_model_parallel.py +++ b/torchrec/distributed/tests/test_quant_sequence_model_parallel.py @@ -213,7 +213,6 @@ def test_quant_pred_shard( torch.cuda.device_count() <= 1, "Not enough GPUs available", ) - @settings(verbosity=Verbosity.verbose, max_examples=1, deadline=None) def test_sharded_quant_kv_zch(self) -> None: device = torch.device("cuda:0") num_features = 4