blob: ea74e09b35d3355733cfedc6aec287843d9326bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/python
# Copyright (C) 2009 Julian Andres Klode <jak@debian.org>
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.
"""Run all available unit tests."""
import os
import unittest
if __name__ == '__main__':
os.chdir(os.path.dirname(__file__))
for path in os.listdir('.'):
if path.endswith('.py') and os.path.isfile(path):
exec('from %s import *' % path[:-3])
unittest.main()
|