Skip to content

Commit e94725e

Browse files
committed
BUG: Skipping doctest for csvReader (done in test_utility.py)
1 parent 5bf83ea commit e94725e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Next release
2323
* FIX: Output prefix in SPM Normalize with modulation (https://github.com/nipy/nipype/pull/1023)
2424
* ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025)
2525
* ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042)
26-
* ENH: Added csvReader() utility
26+
* ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
2727

2828
Release 0.10.0 (October 10, 2014)
2929
============

nipype/interfaces/utility.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -491,20 +491,20 @@ class CSVReader(BaseInterface):
491491
Examples
492492
--------
493493
494-
>>> reader = cv.CSVReader()
495-
>>> reader.inputs.in_file = 'noHeader.csv'
496-
>>> out = reader.run()
494+
>>> reader = CSVReader() # doctest: +SKIP
495+
>>> reader.inputs.in_file = 'noHeader.csv' # doctest: +SKIP
496+
>>> out = reader.run() # doctest: +SKIP
497497
>>> out.outputs.column_0 == ['foo', 'bar', 'baz'] # doctest: +SKIP
498498
True
499499
>>> out.outputs.column_1 == ['hello', 'world', 'goodbye'] # doctest: +SKIP
500500
True
501501
>>> out.outputs.column_2 == ['300.1', '5', '0.3'] # doctest: +SKIP
502502
True
503503
504-
>>> reader = cv.CSVReader()
505-
>>> reader.inputs.in_file = 'header.csv'
506-
>>> reader.inputs.header = True
507-
>>> out = reader.run()
504+
>>> reader = CSVReader() # doctest: +SKIP
505+
>>> reader.inputs.in_file = 'header.csv' # doctest: +SKIP
506+
>>> reader.inputs.header = True # doctest: +SKIP
507+
>>> out = reader.run() # doctest: +SKIP
508508
>>> out.outputs.files == ['foo', 'bar', 'baz'] # doctest: +SKIP
509509
True
510510
>>> out.outputs.labels == ['hello', 'world', 'goodbye'] # doctest: +SKIP

0 commit comments

Comments
 (0)