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.
This commit is contained in:
Dustin J. Mitchell 2025-05-29 10:05:04 -04:00
parent 9bf51422a1
commit d67d7cf06c
No known key found for this signature in database

View file

@ -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)