From d67d7cf06cdc16a4f39f577054538c57cddd5403 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Thu, 29 May 2025 10:05:04 -0400 Subject: [PATCH] Test case for taskrc creation no longer works A taskrc is only created when stdout is a tty, which would require allocating a pty, which is very platform-dependent and definitely not worth the trouble for this test. --- test/taskrc.test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/taskrc.test.py b/test/taskrc.test.py index 044681881..868ad2382 100755 --- a/test/taskrc.test.py +++ b/test/taskrc.test.py @@ -40,6 +40,7 @@ class TestTaskrc(TestCase): """Executed before each test in the class""" self.t = Task() + @unittest.skip("taskrc generation requires a tty - see #3751") def test_default_taskrc(self): """Verify that a default .taskrc is generated""" os.remove(self.t.taskrc)