summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <jquast@io.com>2015-01-03 19:24:29 -0800
committerJeff Quast <jquast@io.com>2015-01-03 19:24:29 -0800
commit136102b0197ed051847b087b4175a8f36f519dfc (patch)
tree2b85c3ffab24956117b80f32aea0758cd7355679
parentfea70a07064c95ba8f191cc0f261859f44e793da (diff)
downloadblessings-136102b0197ed051847b087b4175a8f36f519dfc.tar.gz
add missing pytest module
-rw-r--r--blessed/tests/test_keyboard.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/blessed/tests/test_keyboard.py b/blessed/tests/test_keyboard.py
index fa0ba99..6a2a25c 100644
--- a/blessed/tests/test_keyboard.py
+++ b/blessed/tests/test_keyboard.py
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
"Tests for keyboard support."
+# std imports
import functools
import tempfile
try:
@@ -11,11 +12,12 @@ import signal
import curses
import time
import math
-import tty
+import tty # NOQA
import pty
import sys
import os
+# local
from .accessories import (
read_until_eof,
read_until_semaphore,
@@ -29,6 +31,8 @@ from .accessories import (
xterms,
)
+# 3rd-party
+import pytest
import mock
if sys.version_info[0] == 3: