itholic commented on code in PR #37294:
URL: https://github.com/apache/spark/pull/37294#discussion_r930561172
##########
python/pyspark/pandas/tests/test_dataframe_conversion.py:
##########
@@ -187,7 +188,10 @@ def test_to_json_with_partition_cols(self):
output_path = "%s/%s/%s" % (self.tmp_dir, partition_path,
output_paths[0])
self.assertEqual("[%s]" % open(output_path).read().strip(),
expected)
- @unittest.skip("Pyperclip could not find a copy/paste mechanism for
Linux.")
+ @unittest.skipIf(
+ sys.platform == "linux" or sys.platform == "linux2",
+ "Pyperclip could not find a copy/paste mechanism for Linux.",
+ )
Review Comment:
`Pyperclip` doesn't work only on Linux system, so we don't need to skip this
in Mac or Window systems.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]