We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb4ca7 commit c5c22d6Copy full SHA for c5c22d6
.github/workflows/pythonpackage.yml
@@ -25,11 +25,17 @@ jobs:
25
uses: actions/setup-python@v2
26
with:
27
python-version: ${{ matrix.python-version }}
28
- - name: Install dependencies
+ - name: Install build dependencies
29
run: |
30
python -m pip install --upgrade pip
31
+ - name: Install Pydra
32
+ run: |
33
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
37
pip install ${{ matrix.pip-flags }} ".[dev]"
38
+ python -c "import pydra.tasks.TODO as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
39
- name: Test with pytest
40
41
pytest -sv --doctest-modules pydra/tasks/TODO
0 commit comments