1 | ======================================================================
|
---|
2 | FAIL: alternate: manage.py builtin commands fail with an import error when no default settings provided
|
---|
3 | ----------------------------------------------------------------------
|
---|
4 | Traceback (most recent call last):
|
---|
5 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 591, in test_builtin_command
|
---|
6 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
7 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
8 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
9 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
10 | File "./manage.py", line 11, in <module>
|
---|
11 | execute_manager(settings)
|
---|
12 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
13 | project_directory = setup_environ(settings_mod)
|
---|
14 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
15 | project_module = __import__(project_name, {}, {}, [''])
|
---|
16 | ImportError: No module named tests
|
---|
17 | '
|
---|
18 |
|
---|
19 | ======================================================================
|
---|
20 | FAIL: alternate: manage.py builtin commands fail if settings file (from environment) doesn't exist
|
---|
21 | ----------------------------------------------------------------------
|
---|
22 | Traceback (most recent call last):
|
---|
23 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 619, in test_builtin_with_bad_environment
|
---|
24 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
25 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
26 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
27 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
28 | File "./manage.py", line 11, in <module>
|
---|
29 | execute_manager(settings)
|
---|
30 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
31 | project_directory = setup_environ(settings_mod)
|
---|
32 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
33 | project_module = __import__(project_name, {}, {}, [''])
|
---|
34 | ImportError: No module named tests
|
---|
35 | '
|
---|
36 |
|
---|
37 | ======================================================================
|
---|
38 | FAIL: alternate: manage.py builtin commands fail if settings file (from argument) doesn't exist
|
---|
39 | ----------------------------------------------------------------------
|
---|
40 | Traceback (most recent call last):
|
---|
41 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 612, in test_builtin_with_bad_settings
|
---|
42 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
43 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
44 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
45 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
46 | File "./manage.py", line 11, in <module>
|
---|
47 | execute_manager(settings)
|
---|
48 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
49 | project_directory = setup_environ(settings_mod)
|
---|
50 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
51 | project_module = __import__(project_name, {}, {}, [''])
|
---|
52 | ImportError: No module named tests
|
---|
53 | '
|
---|
54 |
|
---|
55 | ======================================================================
|
---|
56 | FAIL: alternate: manage.py builtin commands fail if settings are provided in the environment but no defaults
|
---|
57 | ----------------------------------------------------------------------
|
---|
58 | Traceback (most recent call last):
|
---|
59 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 605, in test_builtin_with_environment
|
---|
60 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
61 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
62 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
63 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
64 | File "./manage.py", line 11, in <module>
|
---|
65 | execute_manager(settings)
|
---|
66 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
67 | project_directory = setup_environ(settings_mod)
|
---|
68 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
69 | project_module = __import__(project_name, {}, {}, [''])
|
---|
70 | ImportError: No module named tests
|
---|
71 | '
|
---|
72 |
|
---|
73 | ======================================================================
|
---|
74 | FAIL: alternate: manage.py builtin commands fail if settings are provided as argument but no defaults
|
---|
75 | ----------------------------------------------------------------------
|
---|
76 | Traceback (most recent call last):
|
---|
77 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 598, in test_builtin_with_settings
|
---|
78 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
79 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
80 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
81 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
82 | File "./manage.py", line 11, in <module>
|
---|
83 | execute_manager(settings)
|
---|
84 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
85 | project_directory = setup_environ(settings_mod)
|
---|
86 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
87 | project_module = __import__(project_name, {}, {}, [''])
|
---|
88 | ImportError: No module named tests
|
---|
89 | '
|
---|
90 |
|
---|
91 | ======================================================================
|
---|
92 | FAIL: alternate: manage.py can't execute user commands
|
---|
93 | ----------------------------------------------------------------------
|
---|
94 | Traceback (most recent call last):
|
---|
95 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 626, in test_custom_command
|
---|
96 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
97 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
98 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
99 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
100 | File "./manage.py", line 11, in <module>
|
---|
101 | execute_manager(settings)
|
---|
102 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
103 | project_directory = setup_environ(settings_mod)
|
---|
104 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
105 | project_module = __import__(project_name, {}, {}, [''])
|
---|
106 | ImportError: No module named tests
|
---|
107 | '
|
---|
108 |
|
---|
109 | ======================================================================
|
---|
110 | FAIL: alternate: manage.py can't execute user commands, even if settings are provided in environment
|
---|
111 | ----------------------------------------------------------------------
|
---|
112 | Traceback (most recent call last):
|
---|
113 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 640, in test_custom_command_with_environment
|
---|
114 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
115 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
116 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
117 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
118 | File "./manage.py", line 11, in <module>
|
---|
119 | execute_manager(settings)
|
---|
120 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
121 | project_directory = setup_environ(settings_mod)
|
---|
122 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
123 | project_module = __import__(project_name, {}, {}, [''])
|
---|
124 | ImportError: No module named tests
|
---|
125 | '
|
---|
126 |
|
---|
127 | ======================================================================
|
---|
128 | FAIL: alternate: manage.py can't execute user commands, even if settings are provided as argument
|
---|
129 | ----------------------------------------------------------------------
|
---|
130 | Traceback (most recent call last):
|
---|
131 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 633, in test_custom_command_with_settings
|
---|
132 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
133 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
134 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
135 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
136 | File "./manage.py", line 11, in <module>
|
---|
137 | execute_manager(settings)
|
---|
138 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
139 | project_directory = setup_environ(settings_mod)
|
---|
140 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
141 | project_module = __import__(project_name, {}, {}, [''])
|
---|
142 | ImportError: No module named tests
|
---|
143 | '
|
---|
144 |
|
---|
145 | ======================================================================
|
---|
146 | FAIL: no settings: manage.py builtin commands fail with an import error when no settings provided
|
---|
147 | ----------------------------------------------------------------------
|
---|
148 | Traceback (most recent call last):
|
---|
149 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 427, in test_builtin_command
|
---|
150 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
151 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
152 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
153 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
154 | File "./manage.py", line 11, in <module>
|
---|
155 | execute_manager(settings)
|
---|
156 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
157 | project_directory = setup_environ(settings_mod)
|
---|
158 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
159 | project_module = __import__(project_name, {}, {}, [''])
|
---|
160 | ImportError: No module named tests
|
---|
161 | '
|
---|
162 |
|
---|
163 | ======================================================================
|
---|
164 | FAIL: no settings: manage.py builtin commands fail if settings file (from environment) doesn't exist
|
---|
165 | ----------------------------------------------------------------------
|
---|
166 | Traceback (most recent call last):
|
---|
167 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 441, in test_builtin_with_bad_environment
|
---|
168 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
169 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
170 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
171 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
172 | File "./manage.py", line 11, in <module>
|
---|
173 | execute_manager(settings)
|
---|
174 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
175 | project_directory = setup_environ(settings_mod)
|
---|
176 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
177 | project_module = __import__(project_name, {}, {}, [''])
|
---|
178 | ImportError: No module named tests
|
---|
179 | '
|
---|
180 |
|
---|
181 | ======================================================================
|
---|
182 | FAIL: no settings: manage.py builtin commands fail if settings file (from argument) doesn't exist
|
---|
183 | ----------------------------------------------------------------------
|
---|
184 | Traceback (most recent call last):
|
---|
185 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 434, in test_builtin_with_bad_settings
|
---|
186 | self.assertOutput(err, "Can't find the file 'settings.py' in the directory containing './manage.py'")
|
---|
187 | File "/home/malcolm/BleedingEdge/Django/django.git/tests/regressiontests/admin_scripts/tests.py", line 111, in assertOutput
|
---|
188 | self.assertTrue(msg in stream, "'%s' does not match actual output text '%s'" % (msg, stream))
|
---|
189 | AssertionError: 'Can't find the file 'settings.py' in the directory containing './manage.py'' does not match actual output text 'Traceback (most recent call last):
|
---|
190 | File "./manage.py", line 11, in <module>
|
---|
191 | execute_manager(settings)
|
---|
192 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 270, in execute_manager
|
---|
193 | project_directory = setup_environ(settings_mod)
|
---|
194 | File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 251, in setup_environ
|
---|
195 | project_module = __import__(project_name, {}, {}, [''])
|
---|
196 | ImportError: No module named tests
|
---|
197 | '
|
---|
198 |
|
---|
199 | ----------------------------------------------------------------------
|
---|
200 | Ran 83 tests in 18.983s
|
---|
201 |
|
---|
202 | FAILED (failures=11)
|
---|