Skip to content

Commit

Permalink
Add new unit tests to run_tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
donnemartin committed Dec 5, 2015
1 parent fe3ca31 commit 4b9c6c2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/run_tests.py
Expand Up @@ -16,8 +16,17 @@

import unittest

from test_completer import CompleterTest # NOQA
from test_hacker_news import HackerNewsTest # NOQA
from test_hacker_news_cli import HackerNewsCliTest # NOQA
from test_haxor import HaxorTest # NOQA
from test_keys import KeysTest # NOQA
from test_toolbar import ToolbarTest # NOQA
try:
from test_cli import CliTest # NOQA
except:
# pexpect import fails on Windows
pass


if __name__ == '__main__':
Expand Down

0 comments on commit 4b9c6c2

Please sign in to comment.