1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed missing system path appends that where causing issues for travis-cl testing

This commit is contained in:
echel0n 2014-11-22 19:33:25 -08:00
parent de23635e28
commit 26ae17d349
4 changed files with 6 additions and 0 deletions

View File

@ -2,7 +2,9 @@ import unittest
import sys
import os.path
sys.path.append(os.path.abspath('..'))
sys.path.append(os.path.abspath('../lib'))
from sickbeard import common

View File

@ -3,6 +3,7 @@ import unittest
import test_lib as test
import sys, os.path
sys.path.append(os.path.abspath('..'))
sys.path.append(os.path.abspath('../lib'))

View File

@ -2,7 +2,9 @@ import unittest
import test_lib as test
import sys, os.path
sys.path.append(os.path.abspath('..'))
sys.path.append(os.path.abspath('../lib'))
from sickbeard import show_name_helpers, scene_exceptions, common, name_cache

View File

@ -25,6 +25,7 @@ import sqlite3
import sys
import os.path
sys.path.append(os.path.abspath('..'))
sys.path.append(os.path.abspath('../lib'))