1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
from __future__ import absolute_import
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
# Make sure messages are not translated when running the tests
# (setting the environment variable here may be too late already,
# in this case you must set it manually before running the tests).
os.environ['LANGUAGE'] = 'C'
# Enable deprecation warnings (disabled by default in Python > 2.6).
import warnings
warnings.simplefilter('default')
#import pkg_resources
#pkg_resources.require('FormEncode')
|