Private GIT

Skip to content
Snippets Groups Projects
Commit 26ae17d3 authored by echel0n's avatar echel0n
Browse files

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

parent de23635e
Branches
Tags
No related merge requests found
......@@ -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
......
......@@ -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'))
......
......@@ -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
......
......@@ -25,6 +25,7 @@ import sqlite3
import sys
import os.path
sys.path.append(os.path.abspath('..'))
sys.path.append(os.path.abspath('../lib'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment