File: deb_skip_doctest_pybids

package info (click to toggle)
nipype 1.8.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 15,808 kB
  • sloc: python: 156,217; javascript: 9,246; tcl: 608; sh: 485; makefile: 165
file content (34 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Author: Yaroslav Halchenko
Last-Update: 2018-12-18 19:54:21 -0500
Description: Skip doctest pybids

--- a/nipype/interfaces/io.py
+++ b/nipype/interfaces/io.py
@@ -2900,9 +2900,9 @@
     from a project, and makes BIDS entities (e.g. subject) available for
     filtering outputs.
 
-    >>> bg = BIDSDataGrabber()
-    >>> bg.inputs.base_dir = 'ds005/'
-    >>> bg.inputs.subject = '01'
+    >>> bg = BIDSDataGrabber() # doctest: +SKIP
+    >>> bg.inputs.base_dir = 'ds005/' # doctest: +SKIP
+    >>> bg.inputs.subject = '01' # doctest: +SKIP
     >>> results = bg.run() # doctest: +SKIP
 
 
@@ -2911,10 +2911,10 @@
     are filtered on common entities, which can be explicitly defined as
     infields.
 
-    >>> bg = BIDSDataGrabber(infields = ['subject'])
-    >>> bg.inputs.base_dir = 'ds005/'
-    >>> bg.inputs.subject = '01'
-    >>> bg.inputs.output_query['dwi'] = dict(datatype='dwi')
+    >>> bg = BIDSDataGrabber(infields = ['subject']) # doctest: +SKIP
+    >>> bg.inputs.base_dir = 'ds005/' # doctest: +SKIP
+    >>> bg.inputs.subject = '01' # doctest: +SKIP
+    >>> bg.inputs.output_query['dwi'] = dict(datatype='dwi') # doctest: +SKIP
     >>> results = bg.run() # doctest: +SKIP
 
     """