We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a2f74f commit bab8f1dCopy full SHA for bab8f1d
test/test_pio.py
@@ -45,12 +45,3 @@ def test_pipeline_construction(self):
45
self.assertIsInstance(pipeline, pio.PipelineSpec)
46
self.assertEqual(len(list(pipeline.stages)), 5)
47
self.assertEqual(json.dumps(pipeline.spec, indent=2), dummy_pipeline)
48
-
49
- pipeline = pipeline + pio.readers.auto(filename="anotherdummmyfile.laz")
50
51
- self.assertEqual(len(pipeline.readers), 2) # we can have multiple readers
52
53
- null_writer = pio.writers.null()
54
- self.assertIsNot(pipeline.writer, null_writer)
55
- pipeline = pipeline + null_writer
56
- self.assertIs(pipeline.writer, null_writer)
0 commit comments