We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e9d36 commit c49da44Copy full SHA for c49da44
.github/workflows/ci-cd.yaml
@@ -63,6 +63,10 @@ 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
+ git clone https://github.com/nipype/pydra.git /tmp/pydra
69
+ pip install -e /tmp/pydra[dev]
70
- name: Install task package
71
72
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