django:如何使StaticLiveServerTestCase在特定端口上侦听?

时间:2019-01-07 14:25:49

标签: django django-rest-framework integration-testing

我有一个应用程序,使用vue作为前端,使用django rest框架作为后端。 在我的应用程序中,vue运行在端口8080上,而django运行在端口8000上,如何使StaticLiveServerTestCase侦听vue服务器的端口?

我用过

class MyTest(StaticLiveServerTestCase):
    def setUp(self):
        self.browser = webdriver.Firefox()
        self.live_server_url = 'http://127.0.0.1:8080'

但是测试后数据库不会重置。

0 个答案:

没有答案