Change sys.path to import the development version in tests!

This commit is contained in:
Vincent Jacques
2012-05-10 19:07:28 +01:00
parent 4c4e551d39
commit 5c18c20ec4
+1 -1
View File
@@ -4,7 +4,7 @@ import unittest
import httplib
import traceback
sys.path.append( os.path.join( os.path.dirname( __file__ ), "..", "..", "src" ) )
sys.path = [ os.path.join( os.path.dirname( __file__ ), "..", "..", "src" ) ] + sys.path
import github
class FakeHttpResponse: