diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 5c8a41c..b679a32 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -36,9 +36,9 @@ jobs: - name: Install dependencies from uv lock if: ${{ inputs.from-lock == 'true' }} # NOTE: We're asserting that the lockfile is up to date - run: uv sync --locked --extra dev --extra optionaltests + run: uv sync --locked --extra dev --extra optionaltests shell: bash - - name: Install disk-objectstore + - name: Install disk-objectstore # I'm using pip install -e to make sure that the coverage properly traces the runs # also of the concurrent tests (maybe we can achieve this differently) run: uv pip install -e .[dev,optionaltests] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34d0c64..275d4ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: # NOTE: We're asserting that the lockfile is up to date run: uv sync --locked --extra dev --extra progressbar --extra optionaltests shell: bash - - name: Install disk-objectstore + - name: Install disk-objectstore # I'm using pip install -e to make sure that the coverage properly traces the runs # also of the concurrent tests (maybe we can achieve this differently) run: uv pip install -e .[dev,progressbar,optionaltests] diff --git a/.github/workflows/concurrency.yml b/.github/workflows/concurrency.yml index 2317ca9..3cec3fa 100644 --- a/.github/workflows/concurrency.yml +++ b/.github/workflows/concurrency.yml @@ -38,7 +38,7 @@ jobs: - name: Install dependencies from uv lock if: ${{ inputs.from-lock == 'true' }} # NOTE: We're asserting that the lockfile is up to date - run: uv sync --locked --extra dev --extra optionaltests + run: uv sync --locked --extra dev --extra optionaltests shell: bash - name: Install disk-objectstore # I'm using pip install -e to make sure that the coverage properly traces the runs