21388: Add rpm instructions to Python READMEs
[arvados.git] / services / fuse / tests / integration_test.py
index 87f9374e41b69cf0aa46759d17290d06ead6718c..24ac7baf046ec526954c35f35b9f390aaf857478 100644 (file)
@@ -93,9 +93,6 @@ class IntegrationTest(unittest.TestCase):
                         return func(self, *args, **kwargs)
                 finally:
                     if self.mount and self.mount.llfuse_thread.is_alive():
-                        logging.warning("IntegrationTest.mount:"
-                                            " llfuse thread still alive after umount"
-                                            " -- ending test suite to avoid deadlock")
                         # pytest uses exit status 2 when test collection failed.
                         # A UnitTest failing in setup/teardown counts as a
                         # collection failure, so pytest will exit with status 2
@@ -105,6 +102,6 @@ class IntegrationTest(unittest.TestCase):
                         # TODO: If we refactor these tests so they're not built
                         # on unittest, consider using a dedicated, non-pytest
                         # exit code like TEMPFAIL.
-                        pytest.exit("llfuse thread outlived test", 2)
+                        pytest.exit("llfuse thread outlived test - aborting test suite to avoid deadlock", 2)
             return wrapper
         return decorator