Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/slow_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@ jobs:
run: nvidia-smi

- name: Run tests
run: uv run pytest --disable-pytest-warnings --runslow tests/slow_tests/
run: |
uv run pytest --disable-pytest-warnings --runslow tests/slow_tests/test_accelerate_model.py
nvidia-smi
uv run pytest --disable-pytest-warnings --runslow tests/slow_tests/test_vllm_model.py
nvidia-smi
export VLLM_WORKER_MULTIPROC_METHOD=spawn && uv run pytest --disable-pytest-warnings --runslow tests/slow_tests/test_accelerate_vlm_model.py
nvidia-smi
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ nanotron = [
"tensorboardX"
]
tensorboardX = ["tensorboardX"]
vllm = ["vllm>=0.10.0,<0.10.2", "ray", "more_itertools"]
vllm = ["vllm>=0.10.0", "ray", "more_itertools"]
sglang = ["sglang"]
quality = ["ruff>=v0.11.0","pre-commit"]
tests = ["pytest>=7.4.0","deepdiff","pip>=25.2"]
Expand Down
Loading