test against min direct deps

This commit is contained in:
Sydney Runkle
2025-07-02 13:06:46 -04:00
parent 000f5c3043
commit 183b7e3262
4 changed files with 37 additions and 22 deletions
+10
View File
@@ -46,6 +46,16 @@ jobs:
working-directory: ${{ inputs.working-directory }}
run: make test
- name: Install min version of deps
shell: bash
working-directory: ${{ inputs.working-directory }}
run: uv sync --all-extras --resolution lowest-direct --no-sources --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test
working-directory: ${{ inputs.working-directory }}
- name: Ensure the tests did not create any additional files
shell: bash
working-directory: ${{ inputs.working-directory }}
+8
View File
@@ -42,6 +42,14 @@ jobs:
shell: bash
run: make test_parallel
- name: Install min version of deps
shell: bash
run: uv sync --all-extras --resolution lowest-direct --no-sources --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test_parallel
- name: Ensure the tests did not create any additional files
shell: bash
run: |