Skip to content

Commit cf55409

Browse files
ydshiehzucchini-nlp
authored andcommitted
byebye CircleCI TF jobs (huggingface#36998)
* byebye tf jobs * byebye tf jobs --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
1 parent 7253bec commit cf55409

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.circleci/create_circleci_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,9 +357,9 @@ def job_name(self):
357357
pytest_num_workers=1,
358358
)
359359

360-
REGULAR_TESTS = [torch_job, tf_job, flax_job, hub_job, onnx_job, tokenization_job, processor_job, generate_job, non_model_job] # fmt: skip
361-
EXAMPLES_TESTS = [examples_torch_job, examples_tensorflow_job]
362-
PIPELINE_TESTS = [pipelines_torch_job, pipelines_tf_job]
360+
REGULAR_TESTS = [torch_job, flax_job, hub_job, onnx_job, tokenization_job, processor_job, generate_job, non_model_job] # fmt: skip
361+
EXAMPLES_TESTS = [examples_torch_job]
362+
PIPELINE_TESTS = [pipelines_torch_job]
363363
REPO_UTIL_TESTS = [repo_utils_job]
364364
DOC_TESTS = [doc_test_job]
365365
ALL_TESTS = REGULAR_TESTS + EXAMPLES_TESTS + PIPELINE_TESTS + REPO_UTIL_TESTS + DOC_TESTS + [custom_tokenizers_job] + [exotic_models_job] # fmt: skip

utils/tests_fetcher.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,17 +1154,14 @@ def parse_commit_message(commit_message: str) -> Dict[str, bool]:
11541154

11551155

11561156
JOB_TO_TEST_FILE = {
1157-
"tests_tf": r"tests/models/.*/test_modeling_tf_.*",
11581157
"tests_torch": r"tests/models/.*/test_modeling_(?!(?:flax_|tf_)).*",
11591158
"tests_generate": r"tests/models/.*/test_modeling_(?!(?:flax_|tf_)).*",
11601159
"tests_tokenization": r"tests/models/.*/test_tokenization.*",
11611160
"tests_processors": r"tests/models/.*/test_(?!(?:modeling_|tokenization_)).*", # takes feature extractors, image processors, processors
11621161
"examples_torch": r"examples/pytorch/.*test_.*",
1163-
"examples_tensorflow": r"examples/tensorflow/.*test_.*",
11641162
"tests_exotic_models": r"tests/models/.*(?=layoutlmv|nat|deta|udop|nougat).*",
11651163
"tests_custom_tokenizers": r"tests/models/.*/test_tokenization_(?=bert_japanese|openai|clip).*",
11661164
# "repo_utils": r"tests/[^models].*test.*", TODO later on we might want to do
1167-
"pipelines_tf": r"tests/models/.*/test_modeling_tf_.*",
11681165
"pipelines_torch": r"tests/models/.*/test_modeling_(?!(?:flax_|tf_)).*",
11691166
"tests_hub": r"tests/.*",
11701167
"tests_onnx": r"tests/models/.*/test_modeling_(?:tf_|(?!flax)).*",

0 commit comments

Comments
 (0)