We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e9d36 commit fd2d94cCopy full SHA for fd2d94c
.github/workflows/ci-cd.yaml
@@ -63,6 +63,9 @@ jobs:
63
- name: Install build dependencies
64
run: |
65
python -m pip install --upgrade pip
66
+ - name: Install Pydra from source for test imports
67
+ run: |
68
+ pip install --upgrade git+https://github.com/nipype/pydra.git#egg=pydra
69
- name: Install task package
70
71
pip install ".[test]"
tests/conftest.py
@@ -14,5 +14,5 @@
14
def pytest_generate_tests(metafunc):
15
return pydra_conftest.pytest_generate_tests(metafunc)
16
17
-except (ImportError, AttributeError):
18
- pass
+except (ImportError, AttributeError, ModuleNotFoundError) as e:
+ print(f"Warning: could not import test fixtures from pydra: {e}")
0 commit comments