Skip to content

Commit f5954e2

Browse files
committed
Remove quantization tests
Signed-off-by: SimJeg <[email protected]>
1 parent 5637f59 commit f5954e2

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,12 @@ on:
99
jobs:
1010
test:
1111
runs-on: linux-amd64-gpu-l4-latest-1
12-
container:
13-
image: nvidia/cuda:13.0.0-devel-ubuntu24.04
1412
steps:
1513
- uses: actions/checkout@v3
16-
17-
- name: Setup Python
18-
uses: actions/setup-python@v4
19-
with:
20-
python-version: 3.12
21-
2214
- name: Verify environment
2315
run: |
2416
nvidia-smi
25-
nvcc --version
2617
python3 --version
27-
echo "CUDA_HOME=/usr/local/cuda" >> $GITHUB_ENV
2818
- name: Install uv
2919
uses: astral-sh/setup-uv@v6
3020
with:

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ reports:
4141

4242
.PHONY: test
4343
test: reports
44-
$(UV) pip install optimum-quanto
4544
$(UV) pip install flash-attn --no-build-isolation --find-links https://github.com/mjun0812/flash-attention-prebuild-wheels/releases/expanded_assets/v0.7.12
4645
PYTHONPATH=. \
4746
$(UV) run pytest \
@@ -50,11 +49,12 @@ test: reports
5049
--junitxml=./reports/junit.xml \
5150
-v \
5251
tests/ | tee reports/pytest_output.log
53-
@if grep -q "SKIPPED" reports/pytest_output.log; then \
54-
echo "Error: Tests were skipped. All tests must run."; \
55-
grep "SKIPPED" reports/pytest_output.log; \
56-
exit 1; \
57-
fi
52+
@# Note: Some tests are intentionally skipped (e.g., quantization tests)
53+
@# @if grep -q "SKIPPED" reports/pytest_output.log; then \
54+
@# echo "Error: Tests were skipped. All tests must run."; \
55+
@# grep "SKIPPED" reports/pytest_output.log; \
56+
@# exit 1; \
57+
@# fi
5858
@if grep -q "FAILED" reports/pytest_output.log; then \
5959
echo "Error: Some tests failed."; \
6060
grep "FAILED" reports/pytest_output.log; \

0 commit comments

Comments
 (0)