File: tests.py

package info (click to toggle)
python-cdd 0.0.11%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 268 kB
  • ctags: 139
  • sloc: python: 1,041; makefile: 6
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)