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 aa794f0 commit aaca781Copy full SHA for aaca781
python/test/reader/reader2table_test.py
@@ -52,13 +52,12 @@ def setUp(self):
52
53
def runTest(self):
54
reader2table = Reader2Table() \
55
- .setContentPath("/home/danilo/tmp/mix-files") \
+ .setContentPath(f"{os.getcwd()}/../src/test/resources/reader") \
56
.setOutputCol("document")
57
58
pipeline = Pipeline(stages=[reader2table])
59
model = pipeline.fit(self.empty_df)
60
61
result_df = model.transform(self.empty_df)
62
- result_df.show(truncate=False)
63
64
self.assertTrue(result_df.select("document").count() > 1)
0 commit comments