more tinkering

This commit is contained in:
Sydney Runkle
2025-05-15 20:32:18 -07:00
parent 25b2b86d93
commit 284400e14f
3 changed files with 21 additions and 12 deletions
+7 -4
View File
@@ -46,11 +46,14 @@ jobs:
working-directory: ${{ inputs.working-directory }}
run: make test
- name: Run unit tests with minimum dependency versions
- name: Install min version of deps
shell: bash
run: uv sync --frozen --all-extras --resolution lowest-direct --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test
working-directory: ${{ inputs.working-directory }}
run: |
uv sync --frozen --all-extras --resolution lowest-direct --force-reinstall
make test
- name: Ensure the tests did not create any additional files
shell: bash
+7 -4
View File
@@ -42,11 +42,14 @@ jobs:
shell: bash
run: make test_parallel
- name: Run unit tests with minimum dependency versions
- name: Install min version of deps
shell: bash
run: uv sync --frozen --all-extras --resolution lowest-direct --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test
working-directory: ${{ inputs.working-directory }}
run: |
uv sync --frozen --all-extras --resolution lowest-direct --force-reinstall
make test_parallel
- name: Ensure the tests did not create any additional files
shell: bash
+7 -4
View File
@@ -39,11 +39,14 @@ jobs:
shell: bash
run: make test
- name: Run unit tests with minimum dependency versions
- name: Install min version of deps
shell: bash
run: uv sync --frozen --all-extras --resolution lowest-direct --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test
working-directory: ${{ inputs.working-directory }}
run: |
uv sync --frozen --all-extras --resolution lowest-direct --force-reinstall
make test
- name: Ensure the tests did not create any additional files
shell: bash