Merge pull request 'ci: locked dependency installs — stop lane-pin thrash from PyPI drift' (#48) from fix/ci-locked-installs into main
Reviewed-on: #48
This commit is contained in:
commit
9d284d95b3
6 changed files with 6 additions and 6 deletions
2
.github/workflows/contemplation.yml
vendored
2
.github/workflows/contemplation.yml
vendored
|
|
@ -44,7 +44,7 @@ jobs:
|
|||
enable-cache: true
|
||||
|
||||
- name: install dependencies
|
||||
run: uv pip install -e ".[dev]" pyyaml
|
||||
run: uv sync --locked --extra dev
|
||||
|
||||
- name: run contemplation cycle
|
||||
id: run
|
||||
|
|
|
|||
2
.github/workflows/full-pytest.yml
vendored
2
.github/workflows/full-pytest.yml
vendored
|
|
@ -53,7 +53,7 @@ jobs:
|
|||
|
||||
- name: install dependencies
|
||||
run: |
|
||||
uv pip install -e ".[dev]" pyyaml
|
||||
uv sync --locked --extra dev
|
||||
|
||||
- name: pytest (parallel, quarantine and slow excluded)
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/lane-shas.yml
vendored
2
.github/workflows/lane-shas.yml
vendored
|
|
@ -81,7 +81,7 @@ jobs:
|
|||
- name: install dependencies
|
||||
if: steps.paths.outputs.run == 'true'
|
||||
run: |
|
||||
uv pip install -e . pyyaml pytest
|
||||
uv sync --locked
|
||||
|
||||
- name: verify lane SHAs
|
||||
if: steps.paths.outputs.run == 'true'
|
||||
|
|
|
|||
2
.github/workflows/nightly-full-pytest.yml
vendored
2
.github/workflows/nightly-full-pytest.yml
vendored
|
|
@ -50,7 +50,7 @@ jobs:
|
|||
|
||||
- name: install dependencies
|
||||
run: |
|
||||
uv pip install -e ".[dev]" pyyaml
|
||||
uv sync --locked --extra dev
|
||||
|
||||
- name: pytest (parallel, full suite, quarantine excluded)
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/ratify-proposal.yml
vendored
2
.github/workflows/ratify-proposal.yml
vendored
|
|
@ -70,7 +70,7 @@ jobs:
|
|||
enable-cache: true
|
||||
|
||||
- name: install dependencies
|
||||
run: uv pip install -e ".[dev]"
|
||||
run: uv sync --locked --extra dev
|
||||
|
||||
- name: resolve review date
|
||||
id: date
|
||||
|
|
|
|||
2
.github/workflows/smoke.yml
vendored
2
.github/workflows/smoke.yml
vendored
|
|
@ -43,7 +43,7 @@ jobs:
|
|||
|
||||
- name: install dependencies
|
||||
run: |
|
||||
uv pip install -e ".[dev]" pyyaml
|
||||
uv sync --locked --extra dev
|
||||
|
||||
- name: pytest smoke suite
|
||||
env:
|
||||
|
|
|
|||
Loading…
Reference in a new issue