Skip to content

Commit

Permalink
without .venv
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Nov 29, 2024
1 parent a5b7e95 commit a038579
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions actions/uv/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ runs:
with:
python-version: "${{ inputs.python-version || '3.11' }}"

- name: Install uv
shell: bash
run: |
pip install uv
- name: Change version in pyproject.toml
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions actions/uv/coverage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ runs:
- name: Test on Linux
shell: bash
run: |
uv pip install --no-cache-dir \
pip install --no-cache-dir \
pytest \
pytest-cov \
pytest-html \
pytest-random-order
uv run pytest --cov=${{ inputs.source-folder || 'cvx' }} --random-order --verbose \
pytest --cov=${{ inputs.source-folder || 'cvx' }} --random-order --verbose \
--html=artifacts/tests/html-report/report.html \
--cov-report term \
--cov-report xml:artifacts/tests/coverage/coverage.xml \
Expand Down

0 comments on commit a038579

Please sign in to comment.