Skip to content

Commit fb981a5

Browse files
committed
added deb_skip_doctest_pybids for now until we get that beast packaged
1 parent 2d8ed0a commit fb981a5

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
--- a/nipype/interfaces/io.py
2+
+++ b/nipype/interfaces/io.py
3+
@@ -2747,9 +2747,9 @@ class BIDSDataGrabber(LibraryBaseInterfa
4+
from a project, and makes BIDS entities (e.g. subject) available for
5+
filtering outputs.
6+
7+
- >>> bg = BIDSDataGrabber()
8+
- >>> bg.inputs.base_dir = 'ds005/'
9+
- >>> bg.inputs.subject = '01'
10+
+ >>> bg = BIDSDataGrabber() # doctest: +SKIP
11+
+ >>> bg.inputs.base_dir = 'ds005/' # doctest: +SKIP
12+
+ >>> bg.inputs.subject = '01' # doctest: +SKIP
13+
>>> results = bg.run() # doctest: +SKIP
14+
15+
16+
@@ -2758,10 +2758,10 @@ class BIDSDataGrabber(LibraryBaseInterfa
17+
are filtered on common entities, which can be explicitly defined as
18+
infields.
19+
20+
- >>> bg = BIDSDataGrabber(infields = ['subject'], outfields = ['dwi'])
21+
- >>> bg.inputs.base_dir = 'ds005/'
22+
- >>> bg.inputs.subject = '01'
23+
- >>> bg.inputs.output_query['dwi'] = dict(modality='dwi')
24+
+ >>> bg = BIDSDataGrabber(infields = ['subject'], outfields = ['dwi']) # doctest: +SKIP
25+
+ >>> bg.inputs.base_dir = 'ds005/' # doctest: +SKIP
26+
+ >>> bg.inputs.subject = '01' # doctest: +SKIP
27+
+ >>> bg.inputs.output_query['dwi'] = dict(modality='dwi') # doctest: +SKIP
28+
>>> results = bg.run() # doctest: +SKIP
29+
30+
"""

debian/patches/series

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
deb_skip_doctest_pybids
12
deb_simplify_requires
23
deb_pytest_xdist_no-nauto
34
deb_no_explicit_pydot

0 commit comments

Comments
 (0)