This commit is contained in:
Dan Saunders
2025-08-29 22:54:21 -04:00
parent df870f6a8f
commit 89d5323c13
7 changed files with 16 additions and 27 deletions

View File

@@ -63,10 +63,9 @@ jobs:
- name: Install dependencies
run: |
uv pip show --system torch
uv pip install --system --no-build-isolation -U -e .
python scripts/unsloth_install.py --uv | sh
python scripts/cutcrossentropy_install.py --uv | sh
uv pip install --system -e .[dev]
uv pip install --system --no-build-isolation -U -e ".[dev]"
python scripts/unsloth_install.py | sh
python scripts/cutcrossentropy_install.py | sh
- name: Make sure PyTorch version wasn't clobbered
run: |

View File

@@ -84,10 +84,10 @@ jobs:
- name: Install dependencies
run: |
uv pip show --system torch
uv pip install --system --no-build-isolation -U -e .
python scripts/unsloth_install.py --uv | sh
python scripts/cutcrossentropy_install.py --uv | sh
uv pip install --system -e .[dev]
uv pip install --system wheel
uv pip install --system --no-build-isolation -U -e ".[dev]"
python scripts/unsloth_install.py | sh
python scripts/cutcrossentropy_install.py | sh
- name: Make sure PyTorch version wasn't clobbered
run: |
@@ -157,8 +157,8 @@ jobs:
uv pip show --system torch
uv pip install --system wheel
uv pip install --system --no-build-isolation -e .
python scripts/unsloth_install.py --uv | sh
python scripts/cutcrossentropy_install.py --uv | sh
python scripts/unsloth_install.py | sh
python scripts/cutcrossentropy_install.py | sh
uv pip install --system -e .[dev]
- name: Make sure PyTorch version wasn't clobbered
@@ -178,7 +178,6 @@ jobs:
pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml
pytest -v --durations=10 tests/cli/
gate-skip-e2e:
needs: [pre-commit, pytest, pytest-sdist]
runs-on: ubuntu-latest