Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2750aa0 commit 53dc043Copy full SHA for 53dc043
.circleci/config.yml
@@ -22,14 +22,21 @@ commands:
22
- run:
23
name: Install dependencies
24
command: |
25
- python -m venv venv
26
- . venv/bin/activate
27
- pip install -e .
28
- pip install -r ./test_requirements/requirements_core.txt
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ uv venv
+ source .venv/bin/activate
+ 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
34
+ uv pip list
35
+ python --version
36
37
name: Test core
38
39
40
python -m pytest tests/test_core
41
no_output_timeout: 20m
42
0 commit comments