summaryrefslogtreecommitdiff
path: root/tests/unittests/__init__.py
blob: 657cb399b7639f90b1ca6053c08d7feefa3e8249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# This file is part of cloud-init. See LICENSE file for license information.

try:
    # For test cases, avoid the following UserWarning to stderr:
    # You don't have the C version of NameMapper installed ...
    from Cheetah import NameMapper as _nm

    _nm.C_VERSION = True
except ImportError:
    pass

# vi: ts=4 expandtab