fix model tests #3962
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tasks Modified | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
# comment/edit out the above to stop/change the triggers | |
jobs: | |
changed_files: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
name: Scan for changed tasks | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
# Uses the tj-actions/changed-files action to check for changes. | |
# Outputs provided here: https://github.com/tj-actions/changed-files#outputs | |
# The `files_yaml` input optionally takes a yaml string to specify filters, | |
# and prepends the filter name to the standard output names. | |
- name: Check task folders | |
id: changed-tasks | |
uses: tj-actions/[email protected] | |
with: | |
# tasks checks the tasks folder and api checks the api folder for changes | |
files_yaml: | | |
tasks: | |
- lm_eval/tasks/** | |
api: | |
- lm_eval/api/** | |
write_output_files: true | |
- name: Run Tests | |
if: steps.changed-tasks.outputs.tasks_any_modified == 'true' || steps.changed-tasks.outputs.api_any_modified == 'true' | |
run: | | |
echo .github/outputs/tasks_all_changed_and_modified_files.txt >> 'GITHUB_ENV' | |
echo "One or more test file(s) has changed." | |
echo "List of all the files that have changed: ${{ steps.changed-tasks.outputs.tasks_all_modified_files }}" | |
- name: Install uv | |
if: steps.changed-tasks.outputs.tasks_any_modified == 'true' || steps.changed-tasks.outputs.api_any_modified == 'true' | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: "3.9" | |
enable-cache: true | |
cache-dependency-glob: "setup.py" | |
- name: Install dependencies | |
if: steps.changed-tasks.outputs.tasks_any_modified == 'true' || steps.changed-tasks.outputs.api_any_modified == 'true' | |
env: | |
UV_SYSTEM_PYTHON: 1 | |
run: | | |
uv pip install -e '.[dev,ifeval]' --extra-index-url https://download.pytorch.org/whl/cpu | |
- name: Test with pytest | |
# if new tasks are added, run tests on them | |
if: steps.changed-tasks.outputs.tasks_any_modified == 'true' | |
run: uv run pytest tests/test_tasks.py -s -vv | |
# if api is modified, run tests on it | |
- name: Test more tasks with pytest | |
env: | |
API: true | |
if: steps.changed-tasks.outputs.api_any_modified == 'true' | |
run: uv run pytest tests/test_tasks.py -s -vv |