Fix Python paths in tests

This commit is contained in:
Sterling Harper 2015-10-02 23:19:00 -04:00
parent 3d5840214d
commit d14750149a
94 changed files with 289 additions and 142 deletions

View file

@ -1,7 +1,9 @@
#!/usr/bin/env python
import os
import sys
sys.path.insert(0, '..')
sys.path.insert(0, os.pardir)
sys.path.insert(0, os.path.join(os.pardir, os.pardir))
from testing_harness import TestHarness