Introduce a fake test to check if test fail

This commit is contained in:
Gabriel Augendre 2020-11-26 12:39:28 +01:00
parent e2f924b262
commit 61ed04886c
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -6,6 +6,10 @@ from model_bakery import baker
from articles.models import Article, Page, User
def test_false():
assert False
@pytest.mark.django_db
def test_can_access_list(
client: Client, published_article: Article, published_page: Page