Skip to content

Commit

Permalink
Reduce uv verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Aug 19, 2024
1 parent 75105e0 commit 3aede8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ jobs:
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt
- name: Install project
run: |
uv venv --system
uv pip install ".[test]"
uv --no-progress venv --system
uv --no-progress pip install ".[test]"
# CLI tests.
- name: mdedup --help
Expand All @@ -128,14 +128,14 @@ jobs:
# character maps to <undefined>
if: runner.os != 'Windows'
run: |
uv run -- mdedup --help
uv --no-progress run -- mdedup --help
- name: mdedup --verbosity DEBUG --version
run: |
uv run -- mdedup --verbosity DEBUG --version
uv --no-progress run -- mdedup --verbosity DEBUG --version
- name: Unittests
run: |
uv run -- pytest
uv --no-progress run -- pytest
- name: Codecov upload
uses: codecov/[email protected]
Expand Down

0 comments on commit 3aede8c

Please sign in to comment.