Add unittest.main() call to test_traceback.py

This commit is contained in:
Berker Peksag 2015-08-05 07:47:33 +03:00
parent 4f3a27e642
commit f5ded2c2ea
2 changed files with 3 additions and 2 deletions

View File

@ -6,8 +6,6 @@ python:
- "3.2"
- "3.3"
- "3.4"
- pypy
- pypy3
install:
- pip install -U pip wheel setuptools
- pip install -r requirements.txt

View File

@ -903,3 +903,6 @@ class TestTracebackException(unittest.TestCase):
u(' ^\n'),
u('SyntaxError: uh oh\n')],
list(exc.format()))
if __name__ == '__main__':
unittest.main()