I\'m running this command:
python manage.py test project.apps.app1.tests
and it causes this error:
AttributeError: \
According to django document When you run your tests, the default behavior of the test utility is to find all the test cases (that is, subclasses of unittest.TestCase) in any file whose name begins with test, automatically build a test suite out of those test cases, and run that suite.
so try this : python manage.py test tests.py