Skip to content

Commit aad7a48

Browse files
committed
ci: fix editable install
1 parent 041e5bd commit aad7a48

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install wheel
3636
run: python -m pip install wheel
3737
- name: Install the package
38-
run: python -m pip install -v --no-build-isolation '.[dev]'
38+
run: python -m pip install -ve '.[dev]' --no-build-isolation
3939
- name: Check formatting
4040
run: make pycheckformat
4141
- name: Code linting
@@ -95,10 +95,10 @@ jobs:
9595
run: pip install -r requirements.txt
9696

9797
- name: Install rcs
98-
run: pip install -v --no-build-isolation '.[dev]'
98+
run: pip install -ve '.[dev]' --no-build-isolation
9999

100100
- name: Install extension
101-
run: pip install -v --no-build-isolation extensions/${{ matrix.extension }}
101+
run: pip install -ve extensions/${{ matrix.extension }} --no-build-isolation
102102

103103
build_cpp_extensions:
104104
needs: [pythonpackage, check-paths]
@@ -138,9 +138,9 @@ jobs:
138138
- name: Install Python dependencies
139139
run: pip install -r requirements.txt
140140
- name: Install RCS
141-
run: pip install -v --no-build-isolation '.[dev]'
141+
run: pip install -ve '.[dev]' --no-build-isolation
142142
- name: Install extension
143-
run: pip install -v --no-build-isolation extensions/${{ matrix.extension }}
143+
run: pip install -ve extensions/${{ matrix.extension }} --no-build-isolation
144144
- name: Check that stub files are up-to-date
145145
run: make -C extensions/${{ matrix.extension }} stubgen && git diff --exit-code
146146
- name: Check clang format

0 commit comments

Comments
 (0)