File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -441,10 +441,10 @@ def check_pipeline_version(cvers, data_desc):
441
441
442
442
.. testsetup::
443
443
444
- >>> import json
445
- >>> data = {"PipelineDescription": {"Version": "1.1.1rc5"}}
446
- >>> desc_file = Path(tmpdir) / 'sample_dataset_description.json'
447
- >>> _ = desc_file.write_text(json.dumps(data))
444
+ >>> import json
445
+ >>> data = {"PipelineDescription": {"Version": "1.1.1rc5"}}
446
+ >>> desc_file = Path('sample_dataset_description.json')
447
+ >>> _ = desc_file.write_text(json.dumps(data))
448
448
449
449
Parameters
450
450
----------
@@ -458,7 +458,6 @@ def check_pipeline_version(cvers, data_desc):
458
458
>>> check_pipeline_version('1.1.1rc5', 'sample_dataset_description.json') is None
459
459
True
460
460
>>> check_pipeline_version('1.1.1rc5+129.gbe0e5158', 'sample_dataset_description.json')
461
-
462
461
>>> check_pipeline_version('1.2', 'sample_dataset_description.json') # doctest: +ELLIPSIS
463
462
'Previous output generated ...'
464
463
You can’t perform that action at this time.
0 commit comments