We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783267a commit c1bc798Copy full SHA for c1bc798
.github/workflows/ci-cd.yaml
@@ -67,7 +67,7 @@ jobs:
67
run: |
68
pip install ".[test]"
69
python -c "import pydra.workers.oar as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
70
- python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
+ python -c "import pydra as m; print(f\"{m.__name__} {getattr(m, '__version__', 'no version')} @ {m.__file__}\")"
71
- name: Test with pytest
72
73
pytest -sv --doctest-modules pydra/workers/oar \
0 commit comments