From e4e259901733e048dc55200cea87253e6a79ea39 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Sun, 31 Jan 2010 21:23:23 -0800 Subject: [PATCH] tests: don't require tahoe to run with no noise if we are using an old twisted that emits DeprecationWarnings --- src/allmydata/test/test_runner.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/allmydata/test/test_runner.py b/src/allmydata/test/test_runner.py index 011f3fa2..c88657d4 100644 --- a/src/allmydata/test/test_runner.py +++ b/src/allmydata/test/test_runner.py @@ -357,6 +357,11 @@ class RunNode(common_util.SignalMixin, unittest.TestCase, pollmixin.PollMixin, def test_client_no_noise(self): self.skip_if_cannot_daemonize() + import pkg_resources + try: + pkg_resources.require("Twisted>=9.0.0") + except pkg_resources.VersionConflict: + raise unittest.SkipTest("We pass this test only with Twisted >= v9.0.0") basedir = self.workdir("test_client_no_noise") c1 = os.path.join(basedir, "c1") HOTLINE_FILE = os.path.join(c1, "suicide_prevention_hotline") -- 2.45.2