X Tutup
Skip to content

Commit 8693348

Browse files
committed
Mark test_issue133 and test_issue108 as slow (fixes bpython#449)
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 6b7f1dd commit 8693348

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bpython/test/test_crashers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def processExited(self, reason):
9595
usePTY=(master, slave, os.ttyname(slave)))
9696
return result
9797

98+
@attr(speed='slow')
9899
def test_issue108(self):
99100
input = textwrap.dedent(
100101
"""\
@@ -105,6 +106,7 @@ def spam():
105106
deferred = self.run_bpython(input)
106107
return deferred.addCallback(self.check_no_traceback)
107108

109+
@attr(speed='slow')
108110
def test_issue133(self):
109111
input = textwrap.dedent(
110112
"""\
@@ -121,7 +123,6 @@ def check_no_traceback(self, data):
121123
class CursesCrashersTest(TrialTestCase, CrashersTest):
122124
backend = "cli"
123125

124-
@attr(speed='slow')
125126
@unittest.skipIf(not have_urwid, "urwid is not available")
126127
@unittest.skipIf(reactor is None, "twisted is not available")
127128
class UrwidCrashersTest(TrialTestCase, CrashersTest):

0 commit comments

Comments
 (0)
X Tutup