Skip to content

Commit

Permalink
fix: pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Nov 15, 2024
1 parent 4eafed7 commit e8b4a5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-python.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Lint Python
on:
workflow_call:
# Because we have a uv.lock file, we can also use this workflow to lint ourselves.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/self-test-qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
fast-test-python-versions: '["3.14"]'
slow-test-platforms: '["ubuntu-latest"]'
slow-test-python-versions: '["3.14"]'
lowest-python-version: '["3.0"]'
lowest-python-version: '3.0'
6 changes: 1 addition & 5 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@ on:
workflow_call:
inputs:
fast-test-platforms:
required: false
type: string
default: '["jammy", "noble"]'
description: |
The platforms to run fast tests on, as a JSON array.
fast-test-python-versions:
required: false
type: string
default: '["3.10", "3.11", "3.12", "3.13"]'
description: |
The python versions to run fast tests on, as a JSON array.
lowest-python-version:
required: false
type: string
description: |
The Python version to run when using "lowest" resolution for tests.
Expand All @@ -25,7 +22,6 @@ on:
description: |
The platforms to run slow tests on, as a JSON array.
slow-test-python-versions:
required: false
type: string
default: '["3.10"]'
description: |
Expand Down Expand Up @@ -104,7 +100,7 @@ jobs:
- name: Upload test coverage
uses: actions/upload-artifact@v4
with:
name: coverage-lowest
name: coverage-lowest-py${{ inputs.lowest-python-version }}
overwrite: true
path: |
./coverage.xml
Expand Down

0 comments on commit e8b4a5c

Please sign in to comment.