proper fix for PY-12052 Can't run django tests with nosetests because of nose_utils not found.

This commit is contained in:
Ekaterina Tuzova
2014-02-10 12:41:15 +04:00
parent 08cf6b3327
commit 393fe4bd0b
2 changed files with 5 additions and 2 deletions
+3 -1
View File
@@ -2,12 +2,14 @@ from tcunittest import TeamcityTestRunner, TeamcityTestResult
from tcmessages import TeamcityServiceMessages
import sys
from pycharm_run_utils import adjust_django_sys_path
from nose_utils import TeamcityNoseRunner
adjust_django_sys_path()
from django.conf import settings
if hasattr(settings, "TEST_RUNNER") and "NoseTestSuiteRunner" in settings.TEST_RUNNER:
from nose_utils import TeamcityNoseRunner
from django.test.testcases import TestCase
from django import VERSION
try:
+2 -1
View File
@@ -20,9 +20,10 @@ def adjust_sys_path(add_script_parent=True, script_index=1):
insert_to_sys_path(script_path)
def adjust_django_sys_path():
sys.path.pop(0)
pycharm_path = sys.path.pop(0)
script_path = sys.argv[-1]
insert_to_sys_path(script_path)
sys.path.append(pycharm_path)
def import_system_module(name):
f, filename, desc = imp.find_module(name)