We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fca0ad9 commit eae7c27Copy full SHA for eae7c27
.github/workflows/publish_testpypi.yml
@@ -33,12 +33,15 @@ jobs:
33
- run: git status
34
# don't modify sync file! messes up version!
35
- run: uv sync --frozen --all-extras
36
- - run: git restore . # delete uv.lock changest
+ - run: git restore . # delete uv.lock changest
37
- run: uv build
38
- run: uv run --no-sync choreo_get_browser -v --i ${{ matrix.chrome_v }}
39
- - run: uv pip install dist/choreographer*.whl
40
- # should we delete choreographer?
41
-
+ - name: Reinstall from wheel
+ run: >
+ uv pip install dist/choreographer-
42
+ $(uv run --no-sync --with setuptools-git-versioning
43
+ setuptools-git-versioning)
44
+ .whl
45
- run: uv run --no-sync choreo_diagnose --no-run
46
- name: Test
47
if: ${{ ! runner.debug && matrix.os != 'ubuntu-latest' }}
0 commit comments