Add a failing test to check CI

This commit is contained in:
Gabriel Augendre 2020-08-21 14:14:51 +02:00
parent a97bfdffef
commit 8a7247f160

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