Skip to content

Commit

Permalink
Do not show progress bars on uv calls
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jul 18, 2024
1 parent adc68ba commit 64cf543
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ name: Autofix
jobs:

autofix:
uses: kdeldycke/workflows/.github/workflows/autofix.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/autofix.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/autolock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ name: Autolock
jobs:

autolock:
uses: kdeldycke/workflows/.github/workflows/autolock.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/autolock.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ name: Changelog & versions
jobs:

changelog:
uses: kdeldycke/workflows/.github/workflows/changelog.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/changelog.yaml@v4.3.1
12 changes: 5 additions & 7 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name: Docs
jobs:

docs:
uses: kdeldycke/workflows/.github/workflows/docs.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/docs.yaml@v4.3.1

update-docs:
needs: docs
Expand All @@ -27,18 +27,16 @@ jobs:
- uses: actions/setup-python@v5.1.1
with:
python-version: "3.12"

- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.0/requirements/uv.txt
- name: Install project
run: |
uv venv --system
uv pip install --all-extras --requirement pyproject.toml .
uv --no-progress venv --system
uv --no-progress pip install --all-extras --requirement pyproject.toml .
- name: Generate dynamic doc
run: |
uv run python -m click_extra.docs_update
uv --no-progress run python -m click_extra.docs_update
- name: Reset uv.lock
# Exclude `uv.lock` file which might be auto-updated by calls to `uv run`.
# See: https://github.com/peter-evans/create-pull-request#controlling-committed-files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-sponsors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ name: Label sponsors
jobs:

label-sponsors:
uses: kdeldycke/workflows/.github/workflows/label-sponsors.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/label-sponsors.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/labeller-content-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ name: Labeller (content-based)
jobs:

labeller:
uses: kdeldycke/workflows/.github/workflows/labeller-file-based.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/labeller-file-based.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/labeller-file-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ name: Labeller (file-based)
jobs:

labeller:
uses: kdeldycke/workflows/.github/workflows/labeller-file-based.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/labeller-file-based.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ name: Labels
jobs:

labels:
uses: kdeldycke/workflows/.github/workflows/labels.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/labels.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ name: Lint
jobs:

lint:
uses: kdeldycke/workflows/.github/workflows/lint.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/lint.yaml@v4.3.1
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ name: Build & release
jobs:

release:
uses: kdeldycke/workflows/.github/workflows/release.yaml@v4.3.0
uses: kdeldycke/workflows/.github/workflows/release.yaml@v4.3.1
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ jobs:

- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.1.4/requirements/uv.txt
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.3.0/requirements/uv.txt
- name: Install project
run: |
uv venv --system
uv pip install --all-extras --requirement ./pyproject.toml .
uv --no-progress venv --system
uv --no-progress pip install --all-extras --requirement ./pyproject.toml .
- name: Override dependency to click@${{ matrix.click-version }}
if: matrix.click-version != 'released'
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
- name: Unittests
run: |
uv run pytest
uv --no-progress run pytest
- name: Codecov upload
uses: codecov/codecov-action@v4.5.0
Expand Down

0 comments on commit 64cf543

Please sign in to comment.