Skip to content

Commit

Permalink
Install non-editable versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle committed Feb 12, 2025
1 parent 14ea52f commit 11c211e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
enable-cache: true

- name: Install the project
run: uv sync --group benchmark --compile-bytecode
run: uv sync --group benchmark --compile-bytecode --no-editable

- name: Prepare benchmark comparisons
# Note: We use a "cache" instead of artifacts because artifacts are not available
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codspeed-benchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
enable-cache: true

- name: Install the project
run: uv sync --group benchmark --compile-bytecode
run: uv sync --group benchmark --compile-bytecode --no-editable

- name: Start server
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
enable-cache: true

- name: Install the project
run: uv sync --compile-bytecode
run: uv sync --compile-bytecode --no-editable

- name: Start database container
if: ${{ startsWith(matrix.database, 'postgres') }}
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
docker run --rm prefecthq/prefect-dev:${{ steps.get_image_tag.outputs.image_tag }} prefect version
- name: Install the project
run: uv sync --compile-bytecode
run: uv sync --compile-bytecode --no-editable

- name: Start database container
if: ${{ startsWith(matrix.database, 'postgres') }}
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
enable-cache: true

- name: Install the project
run: uv sync --compile-bytecode
run: uv sync --compile-bytecode --no-editable

- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
enable-cache: true

- name: Install the project
run: uv sync --compile-bytecode
run: uv sync --compile-bytecode --no-editable

- name: Setup NodeJS
uses: actions/setup-node@v4
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
enable-cache: true

- name: Install the project
run: uv sync --compile-bytecode
run: uv sync --compile-bytecode --no-editable

- name: Run type completeness check
run: >-
Expand Down

0 comments on commit 11c211e

Please # to comment.