Skip to content

Commit 7b10732

Browse files
committed
use -e for workflows
1 parent 5882805 commit 7b10732

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
conda install --file requirements/run.txt
4040
conda install --file requirements/test.txt
4141
python -m pip install -r requirements/pip.txt
42-
python -m pip install . --no-deps
42+
python -m pip install -e . --no-deps
4343
4444
- name: Validate diffpy.pdffit2
4545
run: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
conda install --file requirements/run.txt
3737
conda install --file requirements/docs.txt
3838
python -m pip install -r requirements/pip.txt
39-
python -m pip install . --no-deps
39+
python -m pip install -e . --no-deps
4040
4141
- name: build documents
4242
run: make -C doc html

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
conda install --file requirements/test.txt
3838
conda install --file requirements/build.txt
3939
python -m pip install -r requirements/pip.txt
40-
python -m pip install . --no-deps
40+
python -m pip install -e . --no-deps
4141
4242
- name: Validate diffpy.pdffit2
4343
run: python -m pytest

.github/workflows/matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
conda install --file requirements/test.txt
4343
conda install --file requirements/build.txt
4444
python -m pip install -r requirements/pip.txt
45-
python -m pip install . --no-deps
45+
python -m pip install -e . --no-deps
4646
4747
- name: Validate diffpy.pdffit2
4848
run: python -m pytest

0 commit comments

Comments
 (0)