Skip to content

Commit

Permalink
specify --frozen
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Feb 4, 2025
1 parent 7a3643e commit c1ea951
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_compile_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Install integration dependencies
shell: bash
run: uv sync --group test --group test_integration
run: uv sync --group test --group test_integration --frozen

- name: Check integration tests compile
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Install dependencies
shell: bash
run: uv sync --group test --group test_integration
run: uv sync --group test --group test_integration --frozen

- name: Install deps outside pyproject
if: ${{ startsWith(inputs.working-directory, 'libs/community/') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python-version: ${{ inputs.python-version }}
- name: Install dependencies
shell: bash
run: uv sync --group test --dev
run: uv sync --group test --dev --frozen

- name: Run core tests
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test_pydantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Install dependencies
shell: bash
run: uv sync --group test
run: uv sync --group test --frozen

- name: Overwrite pydantic version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_diffs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
shell: bash
run: |
echo "Running extended tests, installing dependencies with uv..."
uv sync --group test
uv sync --group test --frozen
uv pip install -r extended_testing_deps.txt
- name: Run extended tests
Expand Down

0 comments on commit c1ea951

Please sign in to comment.