当我尝试运行功能测试时,大约有4次尝试运行功能测试,我等待20分钟才开始测试:
python manage.py test
Using existing test database for alias 'default'...
当我运行单元测试时,这个问题没有发生。
即使我尝试运行简单的测试,例如:
class FrontTest(LiveServerTestCase):
@classmethod
def setUpClass(self):
super(FrontTest,self).setUpClass()
@classmethod
def tearDownClass(self):
super(FrontTest, self).tearDownClass()
def test_stupid(self):
print('hello world')
这个问题是否曾经发生在你身上?