summaryrefslogtreecommitdiff
path: root/tests/__init__.py
blob: cffe5265a6beab42de845c3af32a992fadc9dc09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
import sys

here = os.path.dirname(__file__)
base = os.path.dirname(here)
sys.path.insert(0, base)

# We can only import this after we adjust the paths
import pkg_resources

# Make absolutely sure we're testing *this* package, not
# some other installed package
pkg_resources.require('PasteDeploy')