Skip to content

Commit 4e103a9

Browse files
committed
ci: fix test
1 parent 4b63c8d commit 4e103a9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,18 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@v4
19+
- name: Download test data
20+
run: |
21+
# Do this before setup python because huggingface_hub stopped supporting python 3.8
22+
pip install huggingface_hub
23+
python3 scripts/hf_download.py
1924
- uses: deargen/workflows/actions/setup-python-and-uv@master
2025
- name: Install dependencies
2126
run: |
2227
uv venv
2328
source .venv/bin/activate
2429
uv pip install -r deps/lock/x86_64-manylinux_2_28/requirements_dev.txt
2530
bash scripts/install.sh
26-
python3 scripts/hf_download.py
2731
- name: Run pytest
2832
uses: deargen/workflows/actions/run-pytest@master
2933

rust/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,6 @@
246246
// return dist
247247

248248
use pyo3::prelude::*;
249-
use pyo3::types::PyDict;
250249
use rayon::prelude::*;
251250
use std::collections::{BinaryHeap, HashMap, HashSet};
252251

0 commit comments

Comments
 (0)