本文介绍了pytest-django中的reset_sequence的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已将问题发布到 pytest-django .但是似乎至少有两个星期没有活动.我决定在这里问我的问题.

I have posted my question to the pytest-django. But it seems non-active at least 2 weeks. I decided to ask my question here.

在我的测试中,我想使用 reset_sequence = True .
如何在 pytest-django 中做到这一点?

In my test I want to use reset_sequence=True.
How to do that in pytest-django?

推荐答案

在最新的pytest-django 3.8.0中,您可以执行 @ pytest.mark.django_db(transaction = True,reset_sequences = True)使用 reset_sequences .您可以在官方文档

In latest pytest-django 3.8.0, you can do @pytest.mark.django_db(transaction=True,reset_sequences=True) to use reset_sequences. You can find it in this official documentation

这篇关于pytest-django中的reset_sequence的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 16:04