Skip to content

Commit c5c22d6

Browse files
committed
CI: Verify installations
1 parent ceb4ca7 commit c5c22d6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,17 @@ jobs:
2525
uses: actions/setup-python@v2
2626
with:
2727
python-version: ${{ matrix.python-version }}
28-
- name: Install dependencies
28+
- name: Install build dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31+
- name: Install Pydra
32+
run: |
3133
pip install ${{ matrix.pydra }}
34+
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
35+
- name: Install task package
36+
run: |
3237
pip install ${{ matrix.pip-flags }} ".[dev]"
38+
python -c "import pydra.tasks.TODO as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
3339
- name: Test with pytest
3440
run: |
3541
pytest -sv --doctest-modules pydra/tasks/TODO

0 commit comments

Comments
 (0)