File: __main__.py

package info (click to toggle)
oscrypto 1.3.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,164 kB
  • sloc: python: 22,115; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding: utf-8
from __future__ import unicode_literals, division, absolute_import, print_function

import sys
import unittest

from . import test_classes


suite = unittest.TestSuite()
loader = unittest.TestLoader()
for test_class in test_classes():
    suite.addTest(loader.loadTestsFromTestCase(test_class))
unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run(suite)