File tree 1 file changed +5
-9
lines changed
1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,17 @@ jobs:
11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
- uses : astral-sh/setup-uv@v4
14
+ with :
15
+ enable-cache : true
16
+ cache-dependency-glob : uv.lock
14
17
- uses : actions/setup-python@v5
15
18
with :
16
19
python-version : 3.13
17
20
allow-prereleases : true
18
- - uses : actions/cache@v4
19
- with :
20
- path : ~/.cache/pip
21
- key : ${{ runner.os }}-uv-pip-${{ hashFiles('pyprojecct.toml') }}
22
- - name : Install dependencies
23
- run : |
24
- uv pip install pytest-cov
25
- uv pip install --editable .
21
+ - run : uv sync --dev
26
22
- name : Run tests
27
23
# TODO: #8818 Re-enable quantum tests
28
- run : uv tool run pytest
24
+ run : uv run pytest
29
25
--ignore=computer_vision/cnn_classification.py
30
26
--ignore=docs/conf.py
31
27
--ignore=dynamic_programming/k_means_clustering_tensorflow.py
You can’t perform that action at this time.
0 commit comments