Skip to content

Commit 75a994d

Browse files
committed
CI: Test editable installations
1 parent 6884a56 commit 75a994d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: [3.7, 3.8]
19+
pip-flags: ['', '-e']
1920

2021
steps:
2122
- uses: actions/checkout@v2
@@ -26,7 +27,7 @@ jobs:
2627
- name: Install dependencies
2728
run: |
2829
python -m pip install --upgrade pip
29-
pip install ".[dev]"
30+
pip install ${{ matrix.pip-flags }} ".[dev]"
3031
- name: Test with pytest
3132
run: |
3233
pytest -sv --doctest-modules pydra/tasks/TODO

0 commit comments

Comments
 (0)