File: tests.py

package info (click to toggle)
python-cdd 0.0.6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 268 kB
  • ctags: 123
  • sloc: python: 974; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
import unittest
import sys

sys.path.append('.')

import __init__

if not unittest.TextTestRunner(verbosity=2).\
                               run(__init__.suite()).wasSuccessful():
    sys.exit(1)