Skip to content

Commit 6f17810

Browse files
authored
Fix Marlin QQQ ops test with unittest (#1294)
Fix Marlin QQQ ops test with unittest (#1294) Summary: Pull Request resolved: #1294 Skipping test_marlin_qqq in fbcode Reviewed By: jerryzh168 Differential Revision: D66031641
1 parent 85648b2 commit 6f17810

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/quantization/test_marlin_qqq.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
from torchao.utils import TORCH_VERSION_AT_LEAST_2_5, is_fbcode
2222
import unittest
2323

24-
if is_fbcode():
25-
unittest.skip("Skipping the test in fbcode since we don't have TARGET file for kernels")
26-
27-
24+
@unittest.skipIf(is_fbcode(), "Skipping the test in fbcode since we don't have TARGET file for kernels")
2825
class TestMarlinQQQ(TestCase):
2926
def setUp(self):
3027
super().setUp()

0 commit comments

Comments
 (0)