File: test.py

package info (click to toggle)
dkimpy 0.9.6-0%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 520 kB
  • sloc: python: 2,450; makefile: 16; sh: 2
file content (10 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
import unittest
import doctest
import dkim
from dkim.tests import test_suite
from dkim.tests.test_arc import test_suite as arc_test_suite
import logging

doctest.testmod(dkim)
unittest.TextTestRunner().run(test_suite())
unittest.TextTestRunner().run(arc_test_suite())