mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
proper fix for PY-12052 Can't run django tests with nosetests because of nose_utils not found.
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user