Compare commits

...

1 Commits

Author SHA1 Message Date
8e3fbca4cd try 2025-02-14 16:02:47 +01:00

View File

@ -160,7 +160,7 @@ jobs:
environment: environment:
TRANSFORMERS_IS_CI: yes TRANSFORMERS_IS_CI: yes
PYTEST_TIMEOUT: 120 PYTEST_TIMEOUT: 120
parallelism: 1 parallelism: 4
steps: steps:
- checkout - checkout
- run: uv pip install -e ".[quality]" - run: uv pip install -e ".[quality]"
@ -169,19 +169,19 @@ jobs:
command: pip freeze | tee installed.txt command: pip freeze | tee installed.txt
- store_artifacts: - store_artifacts:
path: ~/transformers/installed.txt path: ~/transformers/installed.txt
- run: python utils/check_copies.py - run: if [ "$CIRCLE_NODE_INDEX" == "0" ]; then python utils/check_copies.py; fi
- run: python utils/check_modular_conversion.py --num_workers 4 - run: if [ "$CIRCLE_NODE_INDEX" == "1" ]; then python utils/check_modular_conversion.py --num_workers 4; fi
- run: python utils/check_table.py - run: if [ "$CIRCLE_NODE_INDEX" == "3" ]; then python utils/check_table.py; fi
- run: python utils/check_dummies.py - run: if [ "$CIRCLE_NODE_INDEX" == "0" ]; then python utils/check_dummies.py; fi
- run: python utils/check_repo.py - run: if [ "$CIRCLE_NODE_INDEX" == "2" ]; then python utils/check_repo.py; fi
- run: python utils/check_inits.py - run: if [ "$CIRCLE_NODE_INDEX" == "2" ]; then python utils/check_inits.py; fi
- run: python utils/check_config_docstrings.py - run: if [ "$CIRCLE_NODE_INDEX" == "2" ]; then python utils/check_config_docstrings.py; fi
- run: python utils/check_config_attributes.py - run: if [ "$CIRCLE_NODE_INDEX" == "2" ]; then python utils/check_config_attributes.py; fi
- run: python utils/check_doctest_list.py - run: if [ "$CIRCLE_NODE_INDEX" == "0" ]; then python utils/check_doctest_list.py; fi
- run: make deps_table_check_updated - run: if [ "$CIRCLE_NODE_INDEX" == "0" ]; then make deps_table_check_updated; fi
- run: python utils/update_metadata.py --check-only - run: if [ "$CIRCLE_NODE_INDEX" == "3" ]; then python utils/update_metadata.py --check-only; fi
- run: python utils/check_docstrings.py - run: if [ "$CIRCLE_NODE_INDEX" == "3" ]; then python utils/check_docstrings.py; fi
- run: python utils/check_support_list.py - run: if [ "$CIRCLE_NODE_INDEX" == "0" ]; then python utils/check_support_list.py; fi
workflows: workflows:
version: 2 version: 2