@@ -38,6 +38,7 @@ def domain_dataset() -> DocumentDataset:
3838
3939
4040@pytest .mark .gpu
41+ @pytest .mark .skip (reason = "Skipping classifier tests" )
4142@pytest .mark .parametrize ("keep_prob" , [True , False ])
4243def test_domain_classifier (gpu_client , domain_dataset : DocumentDataset , keep_prob : bool ) -> None : # noqa: ANN001, ARG001
4344 from nemo_curator .classifiers import DomainClassifier
@@ -67,6 +68,7 @@ def test_domain_classifier(gpu_client, domain_dataset: DocumentDataset, keep_pro
6768
6869
6970@pytest .mark .gpu
71+ @pytest .mark .skip (reason = "Skipping classifier tests" )
7072def test_quality_classifier (gpu_client ) -> None : # noqa: ANN001, ARG001
7173 from nemo_curator .classifiers import QualityClassifier
7274
@@ -84,6 +86,7 @@ def test_quality_classifier(gpu_client) -> None: # noqa: ANN001, ARG001
8486
8587
8688@pytest .mark .gpu
89+ @pytest .mark .skip (reason = "Skipping classifier tests" )
8790@pytest .mark .parametrize (
8891 "aegis_variant" ,
8992 [
@@ -121,6 +124,7 @@ def test_aegis_classifier(gpu_client, aegis_variant: str) -> None: # noqa: ANN0
121124
122125
123126@pytest .mark .gpu
127+ @pytest .mark .skip (reason = "Skipping classifier tests" )
124128def test_fineweb_edu_classifier (gpu_client , domain_dataset : DocumentDataset ) -> None : # noqa: ANN001, ARG001
125129 from nemo_curator .classifiers import FineWebEduClassifier
126130
@@ -134,6 +138,7 @@ def test_fineweb_edu_classifier(gpu_client, domain_dataset: DocumentDataset) ->
134138
135139
136140@pytest .mark .gpu
141+ @pytest .mark .skip (reason = "Skipping classifier tests" )
137142def test_fineweb_mixtral_classifier (gpu_client , domain_dataset : DocumentDataset ) -> None : # noqa: ANN001, ARG001
138143 from nemo_curator .classifiers import FineWebMixtralEduClassifier
139144
@@ -147,6 +152,7 @@ def test_fineweb_mixtral_classifier(gpu_client, domain_dataset: DocumentDataset)
147152
148153
149154@pytest .mark .gpu
155+ @pytest .mark .skip (reason = "Skipping classifier tests" )
150156def test_fineweb_nemotron_classifier (gpu_client , domain_dataset : DocumentDataset ) -> None : # noqa: ANN001, ARG001
151157 from nemo_curator .classifiers import FineWebNemotronEduClassifier
152158
@@ -160,6 +166,7 @@ def test_fineweb_nemotron_classifier(gpu_client, domain_dataset: DocumentDataset
160166
161167
162168@pytest .mark .gpu
169+ @pytest .mark .skip (reason = "Skipping classifier tests" )
163170def test_instruction_data_guard_classifier (gpu_client ) -> None : # noqa: ANN001, ARG001
164171 from nemo_curator .classifiers import InstructionDataGuardClassifier
165172
@@ -188,6 +195,7 @@ def test_instruction_data_guard_classifier(gpu_client) -> None: # noqa: ANN001,
188195
189196
190197@pytest .mark .gpu
198+ @pytest .mark .skip (reason = "Skipping classifier tests" )
191199def test_multilingual_domain_classifier (gpu_client ) -> None : # noqa: ANN001, ARG001
192200 from nemo_curator .classifiers import MultilingualDomainClassifier
193201
@@ -224,6 +232,7 @@ def test_multilingual_domain_classifier(gpu_client) -> None: # noqa: ANN001, AR
224232
225233
226234@pytest .mark .gpu
235+ @pytest .mark .skip (reason = "Skipping classifier tests" )
227236def test_content_type_classifier (gpu_client ) -> None : # noqa: ANN001, ARG001
228237 from nemo_curator .classifiers import ContentTypeClassifier
229238
@@ -241,6 +250,7 @@ def test_content_type_classifier(gpu_client) -> None: # noqa: ANN001, ARG001
241250
242251
243252@pytest .mark .gpu
253+ @pytest .mark .skip (reason = "Skipping classifier tests" )
244254def test_prompt_task_complexity_classifier (gpu_client ) -> None : # noqa: ANN001, ARG001
245255 from nemo_curator .classifiers import PromptTaskComplexityClassifier
246256
0 commit comments