We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4cfd7d commit 0fa7f5cCopy full SHA for 0fa7f5c
graphene/contrib/django/tests/models.py
@@ -16,9 +16,6 @@ class Reporter(models.Model):
16
def __str__(self): # __unicode__ on Python 2
17
return "%s %s" % (self.first_name, self.last_name)
18
19
- class Meta:
20
- app_label = 'contrib_django'
21
-
22
23
class Article(models.Model):
24
headline = models.CharField(max_length=100)
@@ -30,4 +27,3 @@ def __str__(self): # __unicode__ on Python 2
30
27
31
28
class Meta:
32
29
ordering = ('headline',)
33
tests/django_settings.py
@@ -1,6 +1,7 @@
1
SECRET_KEY = 1
2
3
INSTALLED_APPS = [
4
+ 'graphene.contrib.django.tests',
5
'examples.starwars_django',
6
]
7
0 commit comments