Skip to content

Commit ffad3f0

Browse files
committed
Remove travis CI cruft
1 parent b5bd855 commit ffad3f0

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

readme.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Build Status](https://travis-ci.org/bpython/curtsies.svg?branch=master)](https://travis-ci.org/bpython/curtsies)
21
[![Documentation Status](https://readthedocs.org/projects/curtsies/badge/?version=latest)](https://readthedocs.org/projects/curtsies/?badge=latest)
32
![Curtsies Logo](http://ballingt.com/assets/curtsiestitle.png)
43

tests/test_terminal.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414
from curtsies.window import BaseWindow, FullscreenWindow, CursorAwareWindow
1515

1616

17-
# a few tests fail on TravisCI that have something to do with
18-
# stdin not being able to be set to nonblocking
19-
# (and still reporting isatty as True)
20-
IS_TRAVIS = bool(os.environ.get("TRAVIS"))
21-
22-
2317
class FakeStdin(StringIO):
2418
encoding = "ascii"
2519

@@ -127,7 +121,6 @@ def __exit__(*args):
127121
pass
128122

129123

130-
@skipIf(IS_TRAVIS, "Travis stdin behaves strangely, see issue 89")
131124
@skipUnless(sys.stdin.isatty(), "blessings Terminal needs streams open")
132125
class TestCursorAwareWindow(unittest.TestCase):
133126
def setUp(self):
@@ -169,7 +162,6 @@ def test_inital_cursor_position(self):
169162
self.assertEqual(self.screen.display, [" ", "hi ", "there "])
170163

171164

172-
@skipIf(IS_TRAVIS, "Travis stdin behaves strangely, see issue 89")
173165
@skipUnless(sys.stdin.isatty(), "blessings Terminal needs streams open")
174166
class TestCursorAwareWindowWithExtraInput(unittest.TestCase):
175167
def setUp(self):

0 commit comments

Comments
 (0)