This commit is contained in:
ydshieh 2024-02-01 19:34:21 +01:00
parent abbffc4525
commit 705edb59a7
3 changed files with 4 additions and 18 deletions

View File

@ -217,9 +217,6 @@ workflows:
when:
not: <<pipeline.parameters.nightly>>
jobs:
- check_circleci_user
- check_code_quality
- check_repository_consistency
- fetch_tests
nightly:

View File

@ -543,27 +543,14 @@ doc_test_job = CircleCIJob(
)
REGULAR_TESTS = [
torch_and_tf_job,
torch_and_flax_job,
torch_job,
tf_job,
flax_job,
custom_tokenizers_job,
hub_job,
onnx_job,
exotic_models_job,
]
EXAMPLES_TESTS = [
examples_torch_job,
examples_tensorflow_job,
examples_flax_job,
]
PIPELINE_TESTS = [
pipelines_torch_job,
pipelines_tf_job,
]
REPO_UTIL_TESTS = [repo_utils_job]
DOC_TESTS = [doc_test_job]
REPO_UTIL_TESTS = []
DOC_TESTS = []
def create_circleci_config(folder=None):

View File

@ -211,6 +211,8 @@ deps = {b: a for a, b in (re.findall(r"^(([^!=<>~ ]+)(?:[!=<>~ ].*)?$)", x)[0] f
# print(" ".join([deps[x] for x in sys.argv[1:]]))' tokenizers datasets)
#
a = 123
def deps_list(*pkgs):
return [deps[pkg] for pkg in pkgs]