Run sys_path_hacks/un_sys_path.sh lms
This commit is contained in:
committed by
Calen Pennington
parent
3ebba52cf7
commit
211bd3beb5
4
sys_path_hacks/lms/survey/tests/__init__.py
Normal file
4
sys_path_hacks/lms/survey/tests/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing survey.tests instead of lms.djangoapps.survey.tests is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.survey.tests import *
|
||||
4
sys_path_hacks/lms/survey/tests/factories.py
Normal file
4
sys_path_hacks/lms/survey/tests/factories.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing survey.tests.factories instead of lms.djangoapps.survey.tests.factories is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.survey.tests.factories import *
|
||||
4
sys_path_hacks/lms/survey/tests/test_models.py
Normal file
4
sys_path_hacks/lms/survey/tests/test_models.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing survey.tests.test_models instead of lms.djangoapps.survey.tests.test_models is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.survey.tests.test_models import *
|
||||
4
sys_path_hacks/lms/survey/tests/test_signals.py
Normal file
4
sys_path_hacks/lms/survey/tests/test_signals.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing survey.tests.test_signals instead of lms.djangoapps.survey.tests.test_signals is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.survey.tests.test_signals import *
|
||||
4
sys_path_hacks/lms/survey/tests/test_utils.py
Normal file
4
sys_path_hacks/lms/survey/tests/test_utils.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing survey.tests.test_utils instead of lms.djangoapps.survey.tests.test_utils is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.survey.tests.test_utils import *
|
||||
4
sys_path_hacks/lms/survey/tests/test_views.py
Normal file
4
sys_path_hacks/lms/survey/tests/test_views.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing survey.tests.test_views instead of lms.djangoapps.survey.tests.test_views is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.survey.tests.test_views import *
|
||||
Reference in New Issue
Block a user