File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,17 @@ jobs:
3434 python-version : ${{ env.MAIN_PYTHON_VERSION }}
3535 - name : Install uv and create venv
3636 run : |
37- python -m pip install --upgrade pip
38- python -m pip install uv
37+ pip install --upgrade pip
38+ pip install uv
3939
4040 - name : Install project dependencies
4141 run : |
42- uv run python -m pip install --system .[tests]
43- uv run python -m pip install --system tests/launcher/pkg_with_entrypoint
42+ uv run pip install --system .[tests]
43+ uv run pip install --system tests/launcher/pkg_with_entrypoint
4444
4545 - name : Run tests
4646 run : |
47- uv run python -m pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
47+ uv run pytest -vx --cov=${{ env.PACKAGE_NAMESPACE }} --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html
4848
4949 # - uses: codecov/codecov-action@v5
5050 # name: 'Upload coverage to CodeCov'
You can’t perform that action at this time.
0 commit comments