Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support mintty (MSYS/Cygwin terminals) #226

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update mock command
  • Loading branch information
3tilley committed Oct 28, 2021
commit 535195373903c3aaf5effbfd603f28a6718d2a96
2 changes: 1 addition & 1 deletion colorama/tests/isatty_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_isattyCorrectForMintty(self, mock_fn):
def test_isattyCorrectForMintty(self, mock_fn):
self.assertTrue(is_a_tty(StreamNonTTY()))
self.assertTrue(is_a_tty(StreamTTY()))
mock_fn.assert_called()
mock_fn.assert_called_once()

class MinttyTest(TestCase):
"""Tests for the detection of mintty / msys/ cygwin
Expand Down