Skip to content

Commit 53dc043

Browse files
committed
Switch to use uv in core tests as well
1 parent 2750aa0 commit 53dc043

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.circleci/config.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,21 @@ commands:
2222
- run:
2323
name: Install dependencies
2424
command: |
25-
python -m venv venv
26-
. venv/bin/activate
27-
pip install -e .
28-
pip install -r ./test_requirements/requirements_core.txt
25+
curl -LsSf https://astral.sh/uv/install.sh | sh
26+
uv venv
27+
source .venv/bin/activate
28+
uv pip install .
29+
uv pip install -r ./test_requirements/requirements_core.txt
30+
- run:
31+
name: List installed packages and python version
32+
command: |
33+
source .venv/bin/activate
34+
uv pip list
35+
python --version
2936
- run:
3037
name: Test core
3138
command: |
32-
. venv/bin/activate
39+
source .venv/bin/activate
3340
python -m pytest tests/test_core
3441
no_output_timeout: 20m
3542

0 commit comments

Comments
 (0)