[Answered ]-Error in test using from django.contrib.auth.models import User

2👍

As far as I understand, you intended to have the Employee model being based on the Person abstract model and not the UserProfile:

class Employee(Person):
    ...
👤alecxe

Leave a comment