summaryrefslogtreecommitdiff
path: root/tests/test_all.py
blob: d561a9ae837504069c2e8a4b88df9f2ec08b8e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/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
import sys

if __name__ == '__main__':
    sys.stderr.write("[tests] Running on %s\n" % sys.version.replace("\n", ""))
    os.chdir(os.path.dirname(__file__))
    # Find the path to the built apt_pkg and apt_inst extensions
    if os.path.exists("../build"):
        from distutils.util import get_platform
        from distutils.sysconfig import get_python_version
        # Set the path to the build directory.
        plat_specifier = ".%s-%s" % (get_platform(), get_python_version())
        if sys.version_info[0] >= 3 or sys.version_info[1] >= 6:
            library_dir = "../build/lib%s%s" % (plat_specifier,
                                            (sys.pydebug and "-pydebug" or ""))
        else:
            library_dir = "../build/lib%s%s" % ((sys.pydebug and "_d" or ""),
                                            plat_specifier)
        sys.path.insert(0, os.path.abspath(library_dir))

    for path in os.listdir('.'):
        if path.endswith('.py') and os.path.isfile(path):
            exec('from %s import *' % path[:-3])

    unittest.main()